daniil-vlasenko

7.23

Jul 12th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. s = int(input())
  2. m = s
  3. while s != 0:
  4. s = int(input())
  5. if s > m and s != 0:
  6. m = s
  7. print(m)
Add Comment
Please, Sign In to add comment