Computer Science, asked by abhishektailor1684, 8 days ago

Algorithm to find the product of two numbers

Answers

Answered by Hacker00X
1

Answer:

fine in python ?

Explanation:

here you go

def calcmain():

prd=x*y

return print(prd)

x=int(input("X="))

y=int(input("Y="))

calcmain()

exit()

Answered by AllenGPhilip
4

Answer:

Explanation:

Step 1 : Start

Step 2 : Input A , B

Step 3 : C = (A * B)

Step 4 : Output C

Step 5 : Stop

Similar questions