#include using namespace std; int main() { int64_t a, b, c, d; cin >> a >> b >> c >> d; cout << a*c-b*d << " " << a*d+b*c << endl; }