#include<iostream>
#include<string>
using namespace std;
class Persons{
   public:
    int name;
    int age;
   // Persons(int n,int a)
   // {
       int name=n;
        int 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;
}