10 INPUT "enter a integer"; A 20 INPUT "enter another integer"; B 30 PRINT " Sum: "; A + B 40 PRINT "Difference: "; A - B 50 PRINT " Product: "; A * B 60 PRINT " Quontent: "; INT(A / B) 70 PRINT " Remainder: "; A - INT(A / B ) * B