Another solution:
data one; input count price; cards; 1 5.15 2 3.33 3 4.44 data two; newprice=6.66; run;
data three; if _n_=1 then set two; set one; output;
proc print data=three; run;
Nat Wooding