RosettaCodeData/Task/Integer-comparison/Euphoria/integer-comparison.euphoria
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

15 lines
257 B
Text

include get.e
integer a,b
a = floor(prompt_number("a = ",{}))
b = floor(prompt_number("b = ",{}))
puts(1,"a is ")
if a < b then
puts(1,"less then")
elsif a = b then
puts(1,"equal to")
elsif a > b then
puts(1,"grater then")
end if
puts(1," b")