9 lines
135 B
Python
9 lines
135 B
Python
szam = int(input())
|
|
|
|
def paros_e(szam):
|
|
if(szam % 2 == 0):
|
|
return True
|
|
else:
|
|
return False
|
|
|
|
print(paros_e(szam)) |