Output Data Format
The output data format is:

01      employee-record-out.
        02      employee-name-out       pic x(20).
        02      filler                  pic x(5).
        02      employee-rate-out       pic 9(3).99.
        02      filler                  pic x(5).
        02      employee-hours-out      pic 9(3).99.
        02      line-feed-out           pic x(1).

The employee-record-in is structured in two levels.
The data fields are at level 02.
A picture clause define the format of the data:

        x(20) means 20 characters
        9(3).99 means 5 digits, with a period insertion.

Blank spaces are inserted between fields, using a 'filler'.