Program for Subtraction in QBASIC
CLS
INPUT "Enter two number"; a, b
c = a - b
PRINT "sum="; c
END