Files
kattis/sith.py
2023-10-16 22:19:02 +02:00

12 lines
160 B
Python

_ = input()
a = int(input())
b = int(input())
res = int(input())
if a - b >= 0:
print("VEIT EKKI")
elif res > 0:
print("SITH")
else:
print("JEDI")