a, b = map(int, input().split()) c, d = map(int, input().split()) n = a*c - b*d m = b*c + a*d print(n, m)