← Back to List
32651번: 인간은 무엇인가 ↗
Solutions
Python 3
72 B | 72 chars
n = int(input()) print("Yes" if n % 2024 == 0 and n <= 100000 else "No")