// editor1
#include <iostream>
#include<string>
using namespace std;
class me{
    private:
    string name;
    int age;
    public :
    void display()
    {
        getline
        cin>>age;
        cout<<"name"<<"  "<<endl;
        cout<<"age: "<<age;
    }
    };
    int main(){
        
    me obj;
    obj.display();
    return 0;
}