11 lines
116 B
Text
11 lines
116 B
Text
a = number input
|
|
b = number input
|
|
if a < b
|
|
print "less"
|
|
.
|
|
if a = b
|
|
print "equal"
|
|
.
|
|
if a > b
|
|
print "greater"
|
|
.
|