백준 알고리즘/python

[ 2753 ] 윤년

power-girl0-0 2021. 2. 28. 02:38
728x90

a = int(input())
if(a%4==0 and (a%100!=0 or a%400==0)):
    print(1)
else:
    print(0)
728x90