3 lines
138 B
Text
3 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
|