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

7 lines
206 B
Text

PRINT "Please enter two integers, separated by a comma: ";
INPUT x, 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
END