6 lines
74 B
Python
6 lines
74 B
Python
a = int(input())
|
|
|
|
if a % 2 == 0:
|
|
print('even')
|
|
else:
|
|
print('odd')
|