PROGRAM Phil;
        {This is a comment to explain the program}
USES WINCRT;
     BEGIN
          WRITELN( 'HELLO WORLD' );
          READLN;
          WRITELN( 'BANG!!' );
          READLN;
          WRITELN( 'Goodbye World' );
          READLN;
          DONEWINCRT;
     END.

