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.

15 lines
303 B

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