Files
python/TangDou/XiTi/1103.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

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;
}