int main()
{
	int x = 1;
	x %= 1.;
	x %= (double)1.;
	return 0;
}
