# x,y=map(int,input().split())
#
# p = x if x > y else y
#
# print(p)
# a,b,c=map(int,input().split())
#
# x=a if a<b else b
#
# y = x if x < c else c
#
# print(y)
# x = int(input())
#
# if x > 10:
# print('^^^^')
# print('#$$$')
# elif x > 5:
# print('%$^$')
# elif x > 0:
# print('AAA')
# elif x % 5 == 0 or x % 3 == 0:
# print('BBB')
# else:
# print('CCC')
#
#
# a,b,c=map(int,input().split())
#
# if a%2==0:
# print(a)
# if b%2==0:
# print(b)
# if c%2==0:
# print(c)
a,b,c=map(int,input().split())
if a%2==0:
print('odd')
else:
print('even')
if b%2==0:
print('odd')
else:
print('even')
if c%2==0:
print('even')
top of page

실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
20221018
20221018
댓글 0개
좋아요
댓글(0)
더 이상 게시물에 대한 댓글 기능이 지원되지 않습니다. 자세한 사항은 사이트 소유자에게 문의하세요.
bottom of page


