Advertisement
Bad_Programist

Untitled

Dec 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. A = input().split()
  2. B = []
  3. for i in A:
  4.     if int(i) <= 0:
  5.         continue
  6.     else:
  7.         B.append(int(i))
  8. print(min(B))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement