def a(x):
if x%2==0:
print('偶然')
elif x%3==0:
print('奇数')


for i in range(1.11):
a(i)