# include "key.hpp"

void main()
{
	key_type k;
	string s("test");
	k = s;
	cout << k << endl;
}
