8 lines
94 B
Python
8 lines
94 B
Python
def b(a):
|
|
if a % 4 == 0:
|
|
if
|
|
return True
|
|
return False
|
|
|
|
|
|
print(b(2016)) |