#include int main() { auto values = std::make_unique(64); for (int i = 0; i < 64; ++i) values[i] = i; return values[63] == 63 ? 0 : 1; }