/****************************************************************/
*Common mistake: mispelled keyword;
*;
*Notice the title statement after the proc print statement;
*Once requested, a title will appear on all subsequent output
*until it is changed or canceled;
*To cancel a title, submit a blank title statement;
/*****************************************************************/
Options ls=80;

DATA age;
  *This is an example of formatted input;
  *formatted input is used to read special data such as dates,
   and scientific notation.;
IMPUT name $7. +2 sex $1. @12 age 2. +1 height 3.1 +1  weight 4.1;
  CARDS;
john     m 12 590  995
james    m 12 573  830
alfred   m 14 690 1125
william  m 15 665 1120
jane     f 12 598  845
louise   f 12 563  770
barbara  f 13 653  980
mary     f 15 665 1120
alice    f 13 565  840
;

PROC PRINT data=age;
 TITLE 'DATA:  AGE';
run;

PROC FREQ;
 TABLES sex*age /list;
RUN;

*This blank title statement will cancel the requested title;
TITLE;
RUN;

Submit to see the output