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

2 lines
138 B
Text

10 INPUT "Enter two integers: ";a;" ";b
20 PRINT a;" is ";("less than " AND (a<b));("equal to " AND (a=b));("greather than " AND (a>b));b