#include <math.h>

int mfloor(double x)
{
	return floor(x);
}