Little Jhool and his punishment
51% Success9345 Attempts20 Points1s Time Limit256MB Memory1024 KB Max Code

Little Jhool was was the most intelligent kid of his school. But he did NOT like his class teacher, his school, and the way he was taught things in school. Well, he was a rebel, to say the least. Like most of us, he hated being punished by his teacher - specially, when the punishment was to sit beside someone of the opposite gender. (Oh, he was a kid, come on!)

There are n number of students in the class, b being the number of boys, and g being the number of girls. Little Jhool decided to challenge his class teacher when she started punishing the entire class using the aforesaid mentioned punishment - making them sit in a straight line outside the class, beside someone of the opposite gender.

The challenge is as follows: Little Jhool selects a student from the class and make him or her sit outside the class. Then, his teacher picks another student from the remaining students, and makes him or her sit next in the line. Little Jhool and teacher then take alternate turns, until all the students of the class are seated.

If the number of pairs of neighboring students of the same gender is GREATER than the number of pairs of neighboring students of the opposite gender, output "Little Jhool wins!" , otherwise, "The teacher wins!"

Input format:
The first line contains, tc, the number of test cases. Following that, the next line contains n, the total number of students in the class. Then, in the next line, there are two integers, b and g representing the number of boys and girls in the class, respectively.

Output format:
You have to print "Little Jhool wins!" or "The teacher wins!" according to the condition.

Constraints:
1 <= t <= 50
1 <= n, b, g <= 100

PS: -> n = b + g
-> There will always be at least one boy and one girl in the class.

Examples
Input
2
4
3 1
3
2 1
Output
Little Jhool wins!
The teacher wins!

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading Editor...
Results