Files
python/fejezet 6/f15/f15.py
2021-12-10 08:46:38 +01:00

9 lines
141 B
Python

szam = int(input())
def paratlan_e(szam):
if(szam % 2 == 0):
return False
else:
return True
print(paratlan_e(szam))