15 lines
257 B
Text
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")
|