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