RosettaCodeData/Task/Integer-comparison/EasyLang/integer-comparison.easy

12 lines
116 B
Plaintext

a = number input
b = number input
if a < b
print "less"
.
if a = b
print "equal"
.
if a > b
print "greater"
.