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