ctf-resources/htb/hacktheboo2024/coding/[Very Easy] oddly_even/solutions/solve.py

6 lines
74 B
Python

a = int(input())
if a % 2 == 0:
print('even')
else:
print('odd')