#include <inttypes.h>

uint64_t uint64_max(uint64_t x,uint64_t y)
{
  if (x < y) return y;
  return x;
}