print the minimum number in the n given integer.
1 <_ N <_ 10
a = list(map(int, input().split())) b = a[0] for i in range(len(a)): b = min(b, a[i]) print(b)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment