# a,b,c=map(int,input().split())
# if a%2==0:
# print('even')
# else:
# print('odd')
# if b%2==0:
# print('even')
# else:
# print('odd')
# if c%2==0:
# print('even')
# else:
# print('odd')
# n=int(input())
# if n<0:
# if n%2==0:
# print('A')
# else:
# print('B')
# else:
# if n%2==0:
# print('C')
# else:
# print('D')
# n=int(input())
# if n>90:
# print('A')
# elif n>=70:
# print('B')
# elif n>=40:
# print('C')
# else:
# print('D')
a,b,c=map(int,input().split())
if a > b and a > c:
if b > c:
print(b)
if a<b and b>c:
if a<c:
print(c)
if a<c and c>b:
if a>b:
print(a)top of page

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


