#include <inttypes.h>

uint8_t uint8_max(uint8_t x,uint8_t y)
{
  if (x < y) return y;
  return x;
}