#include <stdio.h>
#include <math.h>

int main(int argc, char const* argv[])
{
  printf("%ld\n", round(0.0 / 0.0));
  return 0;
}
