*Program 3-5 Demonstrating the DATALINES statement; data demographic; input Gender $ Age Height Weight; datalines; M 50 68 155 F 23 60 101 M 65 72 220 F 35 65 133 M 15 71 166 ; *Program 3-2 Adding PROC PRINT to list the observations in the data set; title "Listing of data set DEMOGRAPHICS"; proc print data=demographics; run;