Hi:
My usual warning about monotonic(), which may work in this case, but is not guaranteed to work in all cases... Any warning like this gives me something to worry about:
http://support.sas.com/kb/15/138.html
A simple alternative (assuming that you are not doing anything other than a simple read and write with the data step program, so that _n_ will correspond to the number of obs in the data set).
cynthia
[pre]
data classSimple;
set sashelp.class;
orig_obs = _n_;
if mod(_n_,2) eq 0 then output;
run;
proc print data=classSimple;
run;
[/pre]