At Westonci.ca, we make it easy to get the answers you need from a community of informed and experienced contributors. Get immediate and reliable answers to your questions from a community of experienced experts on our platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

Write a program that accepts a whole number as
input, multiplies that number by 12, and then
outputs the product.


Sagot :

This is for Python

number = int(input('Number: '))

number = number * 12

print(number)