#include <iostream>
#include <string>
using namespace std;
class Car{
    private:
    string make;
    string model;
    int year;
    public:
    void display(){
        cin >> make >> model >> year;
        cout<<make<<endl;
        cout<<model<<endl;
        cout<<year;
    }
};
int main(){
    Car o;
    o.Car();
    return 0;
}