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

7 lines
74 B
Python
Raw Permalink Normal View History

2024-10-23 11:10:43 +02:00
a = int(input())
if a % 2 == 0:
print('even')
else:
print('odd')