#include <iostream>
using std::cout;

struct Q
{
	Q(){cout<<"a";}
	Q(Q){cout<<"b";}
};

int main()
{
	Q q;
	Q u (q);
	cout<<"c";
}