Computer Science, asked by UltraInstinct2, 3 days ago

Write the algorithm to accept two numbers and print their sum , product and difference.​

Answers

Answered by peehu330
0

Answer:

Well you have to calculate sum, difference ,product of 2 numbers

first Declare 2 variables a ,b

input 2 nos a and b

print sum=a+b

print difference = a-b

print product =a*b

end

Explanation:

Similar questions