#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; constexpr int INF = 1001001001; // constexpr int mod = 1000000007; constexpr int mod = 998244353; template inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll d1, d2; cout << 0 << ' ' << 0 << endl; cin >> d1; cout << 0 << ' ' << d1 << endl; cin >> d2; cout << d2 / 2 << ' ' << d1 - d2 / 2 << endl; return 0; }