#include<iostream>
#include<string>
using namespace std;
class Persons{
   public:
    int name;
    int age;
    Persons(int name,int a)
   {
       this-> name=n;
        this-> age=a;
    }
    void displayDeatils()
    {
        cout<<"Name: "<<name<<endl;
        cout<<"Age: "<<age<<endl;
    }
};
int main()
{
    int name;
    int age;
    cin>>name>>age;
    Persons *p1;
    p1->displayDeatils(name,age);
    return 0;
}