Algorithm to find the product of two numbers
Answers
Answered by
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
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