Problem2220--Structure

2220: Structure

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 1344  Solved: 9
[Submit] [Status] [Web Board] [Creator:]

Description

Write a definition for a structure type for personnel records for hourly employees. The record contains an hourly wage rate, accrued vacation in an integer number of days, and employee status (use ‘T’ for temporary and ‘P’ for permanent). The record includes 1 25 10 T 2 30 11 T 3 15 0 P

Input

employment ID

Output

an hourly wage rate, accrued vacation in an integer number of days, and employee status

Sample Input Copy

1

Sample Output Copy

25 10 T

Source/Category

55