Welcome to my Website!

This is a paragraph! Here's how you make a link: Neocities.

Here's how you can make bold and italic text.

Here's how you can add an image:

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!

print("Welcome to the Question and Answer Program!")name = input("What is your name? ")print("Hello, " + name + "!")age = int(input("What is your age? "))if age < 18:print("Sorry, you're too young to use this program.")exit()elif age >= 18 and age < 25:print("You're young and full of potential!")else:print("You have a lot of life experience!")answer = input("Do you like pizza? (yes/no) ")if answer == "yes":print("Great, who doesn't like pizza?")elif answer == "no":print("Really? That's surprising.")else:print("I'm sorry, I didn't understand your answer.")