RosettaCodeData/Task/Integer-comparison/BASIC256/integer-comparison.basic
2023-07-01 13:44:08 -04:00

5 lines
203 B
Text

input "Please enter one integer: ", x
input "and a second integer: ", y
if x < y then print x; " is less than "; y
if x = y then print x; " is equal to "; y
if x > y then print x; " is greater than "; y