Program to Skip any Two Number from Counting in QBASIC
CLS
PRINT "Skipping 4 & 5 from counting 1 to 10"
FOR a = 1 TO 10
    IF (a <= 3 OR a >= 6) THEN
        PRINT a
    END IF
NEXT a