/* Input a variety of formats */ data a; INPUT dollars comma13.0 +1 date MMDDYY8. +1 Time Time10. +2 Number Comma12.0 +1 Text $16.; datalines; $1,523 10/28/59 10:12 1,324 Good morning $1,329,200.23 10/14/03 23:14 10 Good $0.46 10/6/98 00:05:12.6 1,200,000.45 Some random text run; /* Input using @ commands rather than + */ data b; INPUT dollars comma13.0 @15 date MMDDYY8. @24 Time Time10. @36 Number Comma12.0 +1 @48 Text $17.; /* Column markers 12345678901234567890123456789012345678901234567890123456789012345678901234567890 ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8 */ datalines; $1,523 10/28/59 10:12 1,324 Good morning $1,329,200.23 10/14/03 23:14 10 Good $0.46 10/6/98 00:05:12.6 1,200,000.45 Some random text run;