Solution

integers = list(map(int, input().split()))

print(sorted(integers)[1])

Leave a comment