9 lines
131 B
Python
9 lines
131 B
Python
a = int(input())
|
|
b = int(input())
|
|
if a > b:
|
|
print("MAGA!")
|
|
elif b > a:
|
|
print("FAKE NEWS!")
|
|
else:
|
|
print("WORLD WAR 3!")
|