WAP a program to input to number and store one of them and print their sum and product
and print them 2 time
Answers
Answered by
1
Answer:REM To add and find product of two numbers
CLS
INPUT Number 1 "num1"
INPUT Number 2 "num2"
LET C = num1 + num2
LET D= num1 * num2
PRINT "THE SUM IS";C
PRINT "THE PRODUCT IS";D
Explanation:
Similar questions