This PROC REPORT step prints the data set. ODS creates HTML output in the body file.
proc report data=grain_production nowindows
            headline headskip;
   where year=1996;
   column country type kilotons;
   define country / group width=14 format=$cntry.;
   define type / group 'Type of Grain';
   define kilotons / format=comma12.;
run;