computer write the program find out the product of three 3 number a,b,c whre A equal 60 ,B equal 80 ,c equal 80
Answers
Answered by
1
a, b, c = 60, 80, 80
print("product:", a * b * c)
Similar questions