#include<iostream>
using namespace std;
class A
{
 public:
    int a;
    void method()
    {
       cout<<&A::method<<"\n";
    }
};

int main()
{
    A a1,a2,a3;
    a1.method();
    a2.method();
    a3.method();
    return 0;
}