请注明:姓名-公司-职位
以便审核进群资格,未注明则拒绝
data a;input x y;cards;1 13 3;run;
data b;set a;output;if _n_=1 then do;x=2;y=2;output;end;run;