Computer Science, asked by entiredragon22, 10 months ago

write a program to find a product of 57 and 12 using variable

Answers

Answered by swastikrout1973
1

num1 = 57

num2 = 12

product = num1 * num2

print(product)

The above code is in python

Similar questions