#include<iostream>
using namespace std;

class Person {
public:
int age;
string name;

Person(int age, string name)
{
this->age=age;
this->name=name;
}
int get_age() const;
int inc_age() const;

};

int Person::get_age() const {
return age;
}

int Person::inc_age() const {
this->age++;
}
int main()
{
Person p;
p.age=10;
cout << p.get_age() << endl;
return 0;
}