Skip to content

Instantly share code, notes, and snippets.

@bcuz
Created June 5, 2018 16:33
Show Gist options
  • Save bcuz/ae9a0750547de5893bb286cc1c2f70be to your computer and use it in GitHub Desktop.
Save bcuz/ae9a0750547de5893bb286cc1c2f70be to your computer and use it in GitHub Desktop.
varA=input()
varB=input()
if (type(varA) == str) or (type(varB) == str):
print( "string involved")
else:
varA=int(varA)
varB=int(varB)
if varA>varB:
print ("bigger")
elif varA< varB:
print ("smaller")
else:
print ("equal")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment