#include <iostream>
#include <string>
using namespace std;
class Car {
public:
string brand; // attribute
string model; // attribute
int year; // attribute
};
int main() {
Car myCar; // create an object
myCar.brand = "Toyota"; // set attribute values
myCar.model = "Corolla";
myCar.year = 2024;
cout << myCar.brand << " " << myCar.model << " (" << myCar.year << ")";
return 0;
}