#include <iostream>
using std::cout;
using std::endl;
class Test {
public:
Test(int = 0);
void print() const;
private:
int n;
};
Test::Test(int _n) { n = _n; }
void Test::print() const
{
cout << this->n << " " << (*this).n << endl;
}
int main()
{
Test o(13);
o.print();
return 0;
}
/*
run:
13 13
*/