Skip to content

Instantly share code, notes, and snippets.

@rbanffy
Created November 16, 2014 23:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbanffy/22c0f32cbb2be46efa72 to your computer and use it in GitHub Desktop.
Save rbanffy/22c0f32cbb2be46efa72 to your computer and use it in GitHub Desktop.
max = None
for i in range(5):
num = input('Digite um numero ')
if num > max:
max = num
print max
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment