Hide

Problem J
Takkar

Languages en is
/problems/takkar/file/statement/en/img-0001.png
Image from Twitter
Many countries possess nuclear weapons, and these weapons are usually activated by buttons. You are given two integers $a$ and $b$ where $a$ denotes the size of the button President Trump has and $b$ denotes the size of the button that eternal leader Kim Jong-Un has.

Input

The input consists of two lines. The first line has a single integer $a$, the size of Trump’s button. The second line has a single integer $b$, the size of Kim’s button.

Output

If Trump has a larger button, print MAGA!. If Kim Jong-Un has a larger button print FAKE NEWS!. If the buttons are equally large print WORLD WAR 3!. Note that MAGA is an acronym for "Make America Great Again."

Scoring

Group

Points

Constraints

1

100

$0 \leq a,b \leq 10^9$

Sample Input 1 Sample Output 1
7
13
FAKE NEWS!
Sample Input 2 Sample Output 2
1337
1337
WORLD WAR 3!
Sample Input 3 Sample Output 3
420
42
MAGA!

Please log in to submit a solution to this problem

Log in