write a program to find a product of 57 and 12 using variable
Answers
Answered by
1
num1 = 57
num2 = 12
product = num1 * num2
print(product)
The above code is in python
Similar questions