#include <iostream>
#include<string>
using namespace std;
class Car{
    private:
    string make;
    string model;
    int year;
    
    public:
    void setmake(string m){
        make=m;
    }
    void setmodel(string mo){
        model=mo;
    }
    void setyear(int y){
        year=y;
    }
    string getmake(){
        return make;
    }
    string getmodel(){
        return model;
    }
    int getyear(){
        return year;
    }
};