14 lines
251 B
C++
14 lines
251 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
for (int i = 1; i <= 35; i++) {
|
|
if (2 * i + 4 * (35 - i) == 94) {
|
|
cout << i << " " << 35 - i << endl;
|
|
break;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|