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