#include using namespace std; int main() { long long a, b, x, n; cin >> a >> b >> x >> n; if(x % 2) { cout << n / 2 << " " << 0 << endl; } else { cout << 0 << " " << n / 2 << endl; } return 0; }