// editor2
#include<iostream>
using namespace std;
class car{
    private:
    string make;
    string model;
    int year;
    public:
    void setdata(string m,string mo,int y){
        make = m;
        model = mo;
        year y;
    }
    void display(){
        cout<<make<<endl;
        cout<<model<<endl;
        cout<<year<<endl;
    }
};

int main(){
    string make , model ;
    int year;
    cin>> make;
    cin>>model;
    cin>>year;
    car c;
    c.setdata(make,mode,year);
    c.display();
    return 0;
}