5 2 8
2
a, b, c = map(int, input().split()) min_v = a if b < min_v: min_v = b if c < min_v: min_v = c print(min_v)