PROGRAM Label1;
    LABEL
        99999, 0014, 1;
BEGIN
    GOTO 99999;
    WriteLn('hello');
0014:
    WriteLn('in label 14');
    GOTO 1;
99999:
    WriteLn('Label 99999');
    GOTO 0014;
1:
END.
