
6063번
a, b = map(int, input().split(" "))
print(a if (a>b) else b)
6064번
a, b, c = map(int, input().split(' '))
num1 = a if (a < b) else b
num2 = c if (c < b) else b
print(num1 if (num1 < num2) else num2)
6065번
a, b, c = map(int, input().split(' '))
if not bool(a%2) :
print(a)
if not bool(b%2) :
print(b)
if not bool(c%2) :
print(c)
6066번
a, b, c = map(int, input().split(' '))
if not bool(a%2) :
print('even')
else:
print('odd')
if not bool(b%2) :
print('even')
else:
print('odd')
if not bool(c%2) :
print('even')
else:
print('odd')
6067번
value = int(input())
if value < 0:
if value%2:
print('B')
else:
print('A')
else:
if value%2:
print('D')
else:
print('C')
6068번
score = int(input())
if score >= 90 :
print('A')
elif score >= 70:
print('B')
elif score >= 40:
print('C')
else:
print('D')
6069번
text = input()
if text == 'A':
print('best!!!')
elif text == 'B':
print('good!!')
elif text == 'C':
print('run!')
elif text == 'D':
print('slowly~')
else:
print('what?')
6070번
month = int(input())
value = month//3
if value == 1:
print('spring')
elif value == 2:
print('summer')
elif value == 3:
print('fall')
else:
print('winter')
6071번
value = int(input())
while value:
print(value)
value = int(input())
6072번
value = int(input())
while value:
print(value)
value -= 1
6073번
value = int(input())
while True:
value -= 1
print(value)
if value == 0:
break
6074번
start = ord('a')
end = ord(input())
for i in range(start, end+1):
print(chr(i), end=" ")
6075, 6076번
end = int(input())
for i in range(0, end+1):
print(i)