Last active
November 11, 2017 21:41
-
-
Save Manuela82/befa2ae55c025a1838e8d0bb9a0a9ddc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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