12 lines
205 B
Text
12 lines
205 B
Text
output: "Enter two integers, a and b"
|
|
input: a
|
|
input: b
|
|
|
|
case
|
|
when a > b:
|
|
output: "a is greater than b"
|
|
when a < b:
|
|
output: "a is less than b"
|
|
when a = b:
|
|
output: "a is equal to b"
|
|
esac
|