int less(int x, int y)
{
  return (x < y);
}

int absdiff(int x, int y)
{
  if (x < y)
    return y - x;
  else
    return x - y;
}
