공존’s BLOG
/
Database
/
Resources
/
백준_Python
/
26. 백준_Python [2753] 윤년
Search
Share
26. 백준_Python [2753] 윤년
2753번: 윤년
연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오.
year
=
int
(
input
(
)
)
if
(
(
year
%
4
==
0
)
and
(
year
%
100
!=
0
)
)
or
(
year
%
400
==
0
)
:
print
(
'1'
)
else
:
print
(
'0'
)
Python
복사