#include <inttypes.h>

int8_t int8_max(int8_t x,int8_t y)
{
  if (x < y) return y;
  return x;
}