/*
Write a function that accepts a double argument and returns the largest
integer that is less than or equal to its argument.
*/

int floor(double d)
{
  return d;
}
