How many observations does dataset y have?
y
data x; input a; cards; 1 2 3 4 ; run; data y; set x; output; output; run;