Skip to content

Instantly share code, notes, and snippets.

@bcuz
Created June 5, 2018 16:16
Show Gist options
  • Save bcuz/b793dddec7ff51f47b52918a824f090e to your computer and use it in GitHub Desktop.
Save bcuz/b793dddec7ff51f47b52918a824f090e to your computer and use it in GitHub Desktop.
varA=int(input())
varB=int(input())
if (type(varA) == str) or (type(varB) == str):
print( "string involved")
elif (type(varA) == int) and (type(varB) == int):
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