The first form of this command places the cursor at the int-exp position on the screen. (There are 1024 positions on the screen - numbering starts at position 1 in the top left hand corner and continues across the screen).
The second form of the command allows the user to specify the column number (int1) and the line number (int2) for the positioning of the cursor.
Program Example.
00100 CLS
00110 CURS 25:PRINT "microbee":REM Position 25 on first line
00120 CURS 25,8:PRINT "Computers":REM position 25 on the 8th line
00130 END