A, B = map(int, input().split()) C, D = map(int, input().split()) N, M = A*C - B*D, A*D + B*C print(N, M)