data grades; input student $ test1 test2 final; datalines; Fred 66 80 70 Wilma 97 91 98 ; proc print data=grades; run;
The SAS System 10:59 Friday, April 25, 2008 Obs student test1 test2 final 1 Fred 66 80 70 2 Wilma 97 91 98