PROC PRINT prints the SAMPLE data set. The FORMAT statement associates the NOZEROS. format with the Amount variable.
proc print data=sample;
   format amount nozeros.;
   title1 'Retrieving the NOZEROS. Format from PROCLIB.FORMATS';
   title2 'The SAMPLE Data Set';
run;