Computer Science, asked by kriteesh8, 10 months ago

code for multiplying a=9 and b =5 in python​

Answers

Answered by gaganadithyareddy9
1

Answer:

a = 9

b = 5

mul = a*b

print("Product of numbers = ", mul)

Similar questions