Skip to content

Instantly share code, notes, and snippets.

@roddds
Created July 24, 2013 04:23
Show Gist options
  • Save roddds/6068052 to your computer and use it in GitHub Desktop.
Save roddds/6068052 to your computer and use it in GitHub Desktop.
num = []
maior = 0
for i in range(3):
num.append(int(raw_input("Numero %d: " % (i+1))))
if num[i] > maior:
maior = num[i]
print "\n Maior numero eh %d \n" % maior
if maior % 2 == 0:
print "O numero eh par\n"
else:
print "O numero eh impar\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment