본문 바로가기
백준문제/새싹

백준) 2753번 - python

by kiseno 2024. 1. 26.
728x90
반응형
SMALL
a = int(input())

if a%4==0 and a%100!=0 or a%400==0:
    print("1")
else:
    print("0")
728x90
반응형
LIST

'백준문제 > 새싹' 카테고리의 다른 글

백준) 9086번 - python  (1) 2024.01.31
백준) 2754번 - python  (0) 2024.01.26
백준) 2744번 - python  (0) 2024.01.26
백준) 2739번 - python  (0) 2024.01.26
백준) 2438번 - python  (0) 2024.01.26