options nodate ls=78; title "Example: getting started with SAS"; DATA grade; InPuT subject gender $ exam1 exam2 hwgrade $; datalines; 10 M 80 84 A 7 . 85 89 A 4 F 90 . B 20 M 82 85 B 25 F 94 94 A 14 F 88 84 C ; proc print data=grade; /*print out the dataset*/ var SUBJECT GENDER; run;