본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31655번 International Dates

by 현장 2024. 4. 20.

-Code

date = list(map(int, input().split('/')))

if date[0] > 12:
    print("EU")
elif date[1] > 12:
    print("US")
else:
    print("either")