Problem Description
Group 6 Ikhlas needs to collect old newspapers in a residential area. The youngest member of
the group, Ira, was assigned to take the fewest bundlesof old newspapers. In a row of 5 houses
with bundles of old newspapers that need to be collected, specify the number of bundles that will
be collected by Ira in a row. However, if the number of bundles exceeds 7, Ira needs help from
other members in the group to carry the old newspapers.
Input
The first line is an integer N (1 <= N <= 100) that represents the number of case, followed by N
lines where each line has 5 integers indicating the number of bundleof old newspapers for 5
houses, each separated by a blank. The number of bundle will not exceed 100.
Output
The output comprises of one line for each test case. The line begins with prefix “Case #x:” where
x represents the case number, followed by the output of the test case which is a string. The string
in the output line is“help me” if the number of bundle exceeds 7 and “ok” if the number of
bundle below 7.
Sample Input Output
Sample Input Sample Output
4
11 21 14 15 17
23 22 8 16 13
1 2 4 6 2
3 6 6 5 1
Case #1: help me
Case #2: help me
Case #3: ok
Case #4: ok