Computer Science, asked by Rakshita7761, 5 months ago

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

Answers

Answered by monikasharmaa447
9

Answer:

plz rate me

Explanation:

try:

a = int(input("Enter number: " ))

print("Product (x12) = " + str(a * 12))

except:

print("Entered not a number")

Similar questions