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

15 lines
303 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
for (int i = 0; i < 168; ++i) {
for (int j = 0; j < 168; ++j) {
if (i / 8 + j * 3 / 4 == 76 && i + j == 168) {
cout << i << " " << j << endl;
}
}
}
return 0;
}