#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { cin.tie(nullptr)->sync_with_stdio(false); // rep(i, 8) { // bool a = i & 1; // bool b = (i & 2) >> 1; // bool c = (i & 4) >> 2; // if (!(!(a && b) && c) != !(a && !(b && c))) { // cout << a << ' ' << b << ' ' << c << '\n'; // } // } cout << 1 << ' ' << 0 << ' ' << 0 << '\n'; return 0; }