data contours; format Z 5.1; do X=0 to 400 by 5; do Y=0 to 350 by 10; z=46.2+.09*x-.0005*x**2+.1*y-.0005*y**2+.0004*x*y; output; end; end; run;