#include <inttypes.h>

int64_t int64_max(int64_t x,int64_t y)
{
  if (x < y) return y;
  return x;
}