#int() changes value into integers
print("What is your age?")
age = int(input())

dog_years = age * 7
print("Your age in dog years is: ")
print(dog_years)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: