Write a pseudocode which will accept two integers from the user and calculate the sum and product. Then display the answer to the user.

3 answers

read m,n
sum = m+n
product = m*n
print sum,product
Write Pseudo-code for Summing consecutive integers
math