import
sys
for
line
in
sys.stdin:
Y
=
int
(line)
if
((Y
%
4
=
=
0
)
and
(Y
%
100
!
=
0
)
or
(Y
%
400
=
=
0
)):
print
(
"閏年"
)
else
:
print
(
"平年"
)
import
sys
for
line
in
sys.stdin:
Y
=
int
(line)
if
((Y
%
4
=
=
0
)
and
(Y
%
100
!
=
0
)
or
(Y
%
400
=
=
0
)):
(
"閏年"
)
else
:
(
"平年"
)
解題報告不要直接PO程式碼解答 看得懂字嗎??