Task
📝 **Task:** Class \`Vehicle\` has \`__init__(self, wheels)\`. Make \`Car(Vehicle)\` with \`__init__(self, brand)\` that calls super with wheels=4 and stores brand. Print \`Car("BMW").wheels\` and \`Car("BMW").brand\` on two lines. Expected:\n4\nBMW
📋 Edit the starter code below. Tests run automatically.
💡 **Hint:** Re-read the theory if you get stuck.