James loves to go on Youtube, even during class. He has
He asks you to remind him when he is on Youtube during class time. For every Youtube browsing session, output whether or not it would coincide with his class time.
Constraints
Input Specification
The first line will contain a single integer
The following
The next line will contain a single integer
The following
Output Specification
For each of his Youtube sessions, compute whether or not there is at least one minute within this session that coincides with at least one class.
If he isn't going on Youtube during class time, output
:eyy:
.If he is going on Youtube during class, output
Break is Over! Stop playing games! Stop watching Youtube!
.
Sample Input 1
3
1 2
3 4
5 6
3
2 5
3 7
9 10
Sample Output 1
Break is Over! Stop playing games! Stop watching Youtube!
Break is Over! Stop playing games! Stop watching Youtube!
:eyy:
Explanation for Sample Output 1
All 3 of James' classes coincide with his first Youtube session. For the second Youtube session, class
Sample Input 2
4
525 600
605 680
765 840
845 915
3
450 462
691 710
770 835
Sample Output 2
:eyy:
:eyy:
Break is Over! Stop playing games! Stop watching Youtube!
Comments