power-girl0-0

[ 2753 ] 윤년 본문

백준 알고리즘/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

'백준 알고리즘 > python' 카테고리의 다른 글

[ 2884 ] 알람 시계  (0) 2021.02.28
[ 14681 ] 사분면 고르기  (0) 2021.02.28
[ 9498 ] 시험 성적  (0) 2021.02.28
[ 1330 ] 두 수 비교하기  (0) 2021.02.28
[ 2588 ] 곱셈  (0) 2021.02.25
Comments