#include <inttypes.h>

int64_t int64_zero_01(int64_t x)
{
  if (x == 0) return 1;
  return 0;
}