GOTOPurposeThe GOTO instruction unconditionally branches to thespecified line.FormGOTO number>Description(1) number> is the line number of branch destination.(2) When the GOTO is executed, the control is moved to number>.(3) If number> is not found in the program, anerror is indicated.Example>200 GOTO 500>500 A=A+13-52