Write a Ada program to solve the problem described above.
To make the input easier to work with, in this version of the problem, the employees' names will be represented by positive integers.
The input will contain 3 lines of 5 integers each, representing the job assignments (two lifeguards, two snack bar workers, and one front desk worker in each shift). This is followed by a positive integer N on a line by itself, indicating the number of employees. This is followed by N lines of 4 integers each: the employee's name (a positive integer) then a number (1 or 0) indicating whether the person is qualified to be a lifeguard (1=yes, 0=no), then two nonnegative integers indicating the minimum and maximum number of shifts the person can work.
You are guaranteed that there will be at least one employee and there will be no more than 50 employees.
The output will be one of the two messages "Acceptable" or "Not Acceptable".
Please stick strictly to the input format, as it will make your program easier to test.