Task
📝 **Task:** Define namedtuple \`User\` with fields name, age. Create a User \`alice\` with name="Alice", age=30. Print \`alice.name\` and \`alice.age\` on two lines. Expected:\nAlice\n30
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.