Write a qbasic program that stores two numbers 57 and 25 in two different variables
A and B respectively. This program calculates sum, difference and product of
those numbers and displays them.
Answers
Answered by
2
Answer:
In PYTHON, we can write as
Explanation:
A=int(input())
B=int(input())
print("sum is",A+B)
print("difference is",A-B)
print("product is",A*B)
Answered by
0
Explanation:
CLS
LET A = 57
LET B = 25
SUM=A + B
PRINT SUM
END
Similar questions