Unusual Team Gym

来源:互联网 发布:珠宝首饰销售数据分析 编辑:程序博客网 时间:2024/06/05 03:42

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!

They want to choose their team name, and after many suggestions, they have reduced their options to two names: "FunkyMonkeys" and "WeWillEatYou".

They then created a poll on Facebook to help them with their final decision.

The 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?

Input

The first line of input is T – the number of test cases.

The first line of each test case contains two integers ab (1 ≤ a, b ≤ 100) - the number of votes for "FunkyMonkeys" and "WeWillEatYou" respectively.

Output

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”.

Example
Input
215 2070 70
Output
WeWillEatYouFunkyMonkeys
////  main.cpp//  160929////  Created by 刘哲 on 17/4/13.//  Copyright  2016年 my_code. All rights reserved.////#include <bits/stdc++.h>#include <iostream>#include <algorithm>#include <cstdio>#include <cmath>#include <cstring>#include <string>#include <string.h>#include <map>#include <set>#include <queue>#include <deque>#include <list>#include <bitset>#include <stack>#include <stdlib.h>#define lowbit(x) (x&-x)using namespace std;int main(){    int t;    cin>>t;    while(t--)    {        int a,b;        cin>>a>>b;        if(a<b)            cout<<"WeWillEatYou"<<endl;        else            cout<<"FunkyMonkeys"<<endl;    }    return 0;}



0 0
原创粉丝点击