#include<iostream>
using namespace std;

class Car{
    public:
    void show(){
        cout<<"Toyota"<<endl;
    }
    
    void see(){
        cout<<"Corolla"<<endl;
    }
    
    void display(){
        cout<<'2010'<<endl;
    }
};

  int main(){
      Car obj;
      obj.show();
      obj.see();
      obj.display();
      return 0;
      
  }