#include using namespace std; int main() { // 98 * x + (1200 - x) * 88 = 1200 * 94; // 98 * x +1200*88-88*x=1200*94 // 10*x= 1200*94-1200*88=1200*6 // x=720 int x = (1200 * 94 - 1200 * 88) / 10; cout << x << " " << 1200 - x << endl; return 0; }