code for multiplying a=9 and b =5 in python
Answers
Answered by
1
Answer:
a = 9
b = 5
mul = a*b
print("Product of numbers = ", mul)
Similar questions