#include<iostream>
#include<string>
using namespace std;
class Car
{
    private:
    string make_;
    string model_;
    int year_;
    public:
    void setMake(const strings& make)
    {
        make_ = make;
    }
    voide setModel(const strings& model)
    {
        model_ = model;
    }
    void setYear(int year)
    {
        year_ = year;
    }
    string getMake() const 
    {
        return make_;
    }
    string getModel() const
    {
        return model_;
    }
    int getYear() const
    {
        return year_;
    }
};
int main()
{
    Car c;
    string make, model;
    int year;
    if(!getline(cin, make))
    return 0;
    if(!getline(cin, model))
    return 0;
    
}