a, b, x0, n = map(int, input().split()) if x0 % 2: ans = [0, n // 2] else: ans = [n // 2, 0] print(*ans)