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