Skip to content

Instantly share code, notes, and snippets.

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 fahadbuddy/a3af45c0fdc7f5e871f34f7e70de6fce to your computer and use it in GitHub Desktop.
Save fahadbuddy/a3af45c0fdc7f5e871f34f7e70de6fce to your computer and use it in GitHub Desktop.
a = input("Give me a number: ")
b = input("Give me another number: ")
if int(a) > int(b) and int(a) % int(b) == 1:
print("You are lucky!!!")
else:
print("Sorry, try again!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment