options ls=78;

data hw1;
     infile 'hw1.txt';
     input sn gender $ gre gpa depress anxiety;
run;

proc print data=hw1;
run;


quit;