728x90
반응형
단순 구현 문제이다.
antenna, eyes = int(input()), int(input())
if antenna >= 3 and eyes <= 4:
print("TroyMartian")
if antenna <= 6 and eyes >= 2:
print("VladSaturnian")
if antenna <= 2 and eyes <= 3:
print("GraemeMercurian")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 8710번 Koszykarz(python) (0) | 2021.02.05 |
---|---|
백준 알고리즘 8246번 Stół(python) (0) | 2021.02.05 |
백준 알고리즘 6768번 Don’t pass me the ball!(python) (0) | 2021.02.05 |
백준 알고리즘 6764번 Sounds fishy!(python) (0) | 2021.02.05 |
백준 알고리즘 6763번 Speed fines are not fine!(python) (0) | 2021.02.05 |