Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. max=-9
  2. numb=2
  3. while numb!=0:
  4. numb = int(input("Enter Number: "))
  5. if numb==0:
  6. break
  7. if numb > max:
  8. max = numb
  9. print(max)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement