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