DWITE Online Computer Programming Contest, October 2010, Problem 1
DWITE has traditionally been a high school level contest, so to ensure that no middle schoolers try to sneak in and make older students feel uncomfortable, an age gate is being considered.
The input will contain 5 lines, each having 3 integers representing a person's birth date, in the form of DD MM YYYY
(separated by spaces).
The output will contain 5 lines of output, decisions if the participant is at least years old as of or not. Print old enough
or too young
depending on the age.
Sample Input
28 10 1997
27 10 1997
26 11 1997
Sample Output
too young
old enough
too young
Problem Resource: DWITE
Comments
this is the same as https://dmoj.ca/problem/dwite10c1p1