You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
302 B

#include <bits/stdc++.h>
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;
}