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