Print the data set. The PRINT procedure prints the data set Grain_Production. The TITLE statement specifies the title.


proc print data=grain_production;
title 'Leading Grain-Producing Countries';
run;