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

14 lines
226 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
for (int i = 1;; ++i) {
if (i * 10 - 2 == (i - 1) * 12) {
cout << i << endl;
break;
}
}
return 0;
}