{"raw_statement":[{"iden":"statement","content":"A lion, a mouse, and a beaver are one of the best teams at Animal University, and they have qualified to the ACM Arabella 2017 contest!\n\nThey want to choose their team name, and after many suggestions, they have reduced their options to two names: \"FunkyMonkeys\" and \"WeWillEatYou\".\n\nThey then created a poll on Facebook to help them with their final decision.\n\nThe results of the poll are now with Dr. Samer, and he will use the name with the highest votes to register the team. Can you help Dr. Samer to know which team name they will register with?\n\nThe first line of input is T – the number of test cases.\n\nThe first line of each test case contains two integers a, b (1 ≤ a, b ≤ 100) - the number of votes for \"FunkyMonkeys\" and \"WeWillEatYou\" respectively.\n\nFor each test case, output a single line containing \"FunkyMonkeys\" (without quotes), if that name received more points or tied with “WeWillEatYou”, otherwise output “WeWillEatYou”.\n\n"},{"iden":"input","content":"The first line of input is T – the number of test cases.The first line of each test case contains two integers a, b (1 ≤ a, b ≤ 100) - the number of votes for \"FunkyMonkeys\" and \"WeWillEatYou\" respectively."},{"iden":"output","content":"For each test case, output a single line containing \"FunkyMonkeys\" (without quotes), if that name received more points or tied with “WeWillEatYou”, otherwise output “WeWillEatYou”."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ t \\in \\mathbb{Z} $ be the number of test cases.  \nFor each test case $ k \\in \\{1, \\dots, t\\} $, let $ a_k, b_k \\in \\mathbb{Z} $ denote the number of votes for \"FunkyMonkeys\" and \"WeWillEatYou\", respectively.\n\n**Constraints**  \n1. $ 1 \\le t \\le 100 $  \n2. For each $ k \\in \\{1, \\dots, t\\} $: $ 1 \\le a_k, b_k \\le 100 $\n\n**Objective**  \nFor each test case $ k $, output:  \n$$\n\\begin{cases}\n\\text{\"FunkyMonkeys\"} & \\text{if } a_k \\ge b_k \\\\\n\\text{\"WeWillEatYou\"} & \\text{if } a_k < b_k\n\\end{cases}\n$$","simple_statement":"Given two numbers a and b, if a >= b, print \"FunkyMonkeys\", else print \"WeWillEatYou\".","has_page_source":false}