The input data format is:
01 employee-record-in.
02 employee-name-in pic x(20).
02 employee-rate-in pic 9(3)v99.
02 employee-hours-in pic 9(3)v99.
02 line-feed-in 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)v99 means 5 digits. V implies a decimal point.
x(1) means one character