module Cplx
{
	struct Complex
	{
		float	re;
		float	im;
	};
};