PROC PRINT prints the PAY data set. The FORMAT statement temporarily associates the SALARY. format with the variable MonthlySalary.
proc print data=pay noobs;
   format monthlysalary salary.;
   title 'Printing Salaries for a Check';
run;