#include "mine.h"

/* Function: max 
   Returns the larger of x and y.
*/
int max (int x, int y) {

   if (x > y) {
      return (x) ;
   } else {
      return (y) ;
   }
}
