#include <cassert>
#include <chrono>
#include <cinttypes>
+#include <clocale>
+#include <cmath>
+#include <cstdio>
#include <cstring>
#include <ctime>
#include <iterator>
#include <numeric>
#include <regex>
#include <sstream>
-#include <stdio.h>
#include <string>
#include <vector>
}
int main(int argc, char ** argv) {
+ // try to set locale for unicode characters in markdown
+ setlocale(LC_CTYPE, ".UTF-8");
+
#if !defined(NDEBUG)
fprintf(stderr, "warning: asserts enabled, performance may be affected\n");
#endif