#include <iostream>
using namespace std;

template <typename T>
const T* make_const(T *ptr) {
	return ptr;
}

struct MyQuestion
{
	void fun()
	{ cout<<"a"; }
	
	void fun()const
	{ cout<<"b"; }

	void call()
	{
	    make_const(this)->fun(); 	// calls fun() const
		
		fun(); 						// calls fun()
	}
};

int main() {
	MyQuestion q;
	q.call();
}