#include <iostream>
using namespace std;
class Test
{
	public:
	void fun()
	{
		cout<<"fun() in Test\n";
	}
};
int main() {
	new Test()->fun();
	// your code goes here
	return 0;
}