PROGRAM PROG15A; {$U+ Copyright (C), 1985 by Lyle Faurot. All rights reserved. New Topics: Cursor location VAR X, Y : Integer; BEGIN ClrScr; Write('Enter X and Y: '); ReadLn(X, Y); GotoXY(X, Y); WriteLn(X,' ',Y); END.