- Input: Getting data from the user.
- Output: Displaying data to the user.
name = input("Enter your name: ")
print("Hello, " + name + "!")
Challenge: Write a program that asks the user for their name and age, then prints a message greeting them and telling them how old they are.