// 提出時にassertはオフ #ifndef DEBUG #ifndef NDEBUG #define NDEBUG #endif #endif #include using namespace std; using ll = long long; #define ALL(x) (x).begin(), (x).end() template using vec = vector; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); const ll a = 109552575; const ll b = 2 * a + 189750626; cout << 0 << " " << 0 << "\n"; cout << a << " " << b << "\n"; cout << b << " " << a << "\n"; }