Created
June 5, 2018 16:33
-
-
Save bcuz/ae9a0750547de5893bb286cc1c2f70be 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
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