Untitled
Anonymous
plain_text
01/26/2024 5:30 PM
240 B
12
Indexable
a = int(input())
if a % 400 == 0 and a % 4 == 0 and a % 100 != 0:
print('YES')# TODO: write code... a % 400 = 0 and !(a % 100 = 0) and a % 4 = 0:
else:
print('NO')Editor is loading...
Leave a Comment