NumberUtil = {};

NumberUtil.getParity = function(int)
{
	if(int % 2 == 0)
	{
		return "even";
	}
	else
	{
		return "odd";
	}
}