#include <iostream>
#include <string>

class Car {
    private:
    std::string make;
    std::string model;
    int year;
    
    public:
    void setMake(std::string m){
        make =m;
    }
    void setModel(std::string mo){
        model =mo;
    }
    void setYear(int y){
        year =y;
    }
    std::string getMake(){
        return make;
    }
    std::string getModel(){
        return model;
    }
    int getYear(){
        return year;
    }
};