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