Write a pseudo code for a program which will accept two numbers from the keyboard and calculate the sum and product displaying the answer on the monitor screen
Pseudocode:
a = read()
b = read()
x = a + b
print("a + b = " + x)
y = a * b
print("a * b = " + y)
Comments
Leave a comment