RosettaCodeData/Task/Integer-comparison/EasyLang/integer-comparison.easy
2023-07-01 13:44:08 -04:00

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"
.