Will the below code create the output table JACK successfully?
data jesu; Name='J'; mark1=50; mark2=40; run; data jack; set jesu; Total=mark1+mark2; where total > 70; run;