import sys
input = sys.stdin.readline
A = list(map(int, input().split()))
print (sorted(A)[1])

+ Recent posts