16 lines
205 B
OpenEdge ABL
16 lines
205 B
OpenEdge ABL
software {
|
|
a = number(read(' '))
|
|
b = number(read())
|
|
|
|
if a < b
|
|
print(a, " is less than ", b)
|
|
end
|
|
|
|
if a = b
|
|
print(a, " is equal to ", b)
|
|
end
|
|
|
|
if a > b
|
|
print(a, " is greater than ", b)
|
|
end
|
|
}
|