백준 2753번 윤년 파이썬
2022.03.07 16:01
백준 2753번 윤년 파이썬 코드이다.
a = int(input())
if a % 4 == 0 and a % 100 != 0 or a % 400 == 0:
print(1)
else:
print(0)