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

[백준/파이썬] 32651번 인간은 무엇인가

by 현장 2024. 11. 12.

-Code

n = int(input())
print("Yes" if n % 2024 == 0 and n <= 100000 else "No")