I know the names are kind of long but I wanted to make sure there was no way it was pulling from used variables
firstvalue = input("first")
secondvalue = input("second")
if firstvalue < secondvalue:
print ("first value is < second value")
print ( firstvalue, "less than", secondvalue)
else:
if firstvalue == secondvalue:
print ("first is = second")
else:
print ("first is greater than 2nd")
print (firstvalue , "greater than", secondvalue)