#include <inttypes.h>

int16_t int16_max(int16_t x,int16_t y)
{
  if (x < y) return y;
  return x;
}