Skip to content

Instantly share code, notes, and snippets.

@Manuela82
Last active November 11, 2017 21:41
Show Gist options
  • Save Manuela82/befa2ae55c025a1838e8d0bb9a0a9ddc to your computer and use it in GitHub Desktop.
Save Manuela82/befa2ae55c025a1838e8d0bb9a0a9ddc to your computer and use it in GitHub Desktop.
secret = 28
guess = int(raw_input("Guess the secret number: "))
if guess == secret:
print "Congratulations!!!"
else:
print "Sorry, wrong number. Try it again!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment