Write an algorithm to multiply two numbers: P and Q.
Answers
Answered by
1
Answer:
a=int(P)
b=int(Q)
c=a*b
print(c)
Answered by
0
if p is 5 and q is 5 u get 25
Similar questions