Task
📝 Task: Create variables
📋 What to do:
1. Create a variable name and assign a string (your name in quotes)
2. Create a variable age and assign a number (your age)
3. Print both variables using print()
💡 Example:
name = "Anna"
age = 25
print(name)
print(age)
# Outputs:
# Anna
# 25
⚠️ Important:
• Strings (text) — in quotes: "Anna"
• Numbers — NO quotes: 25 (not "25")