#include <iostream>
#include <string>
using namespace std;
class Car {
public:
string brand;
int year;
Car() { // constructor
brand = "Unknown";
year = 2000;
}
};
int main() {
Car myCar; // constructor runs here
cout << myCar.brand << " " << myCar.year;
return 0;
}