Run ID:137244

提交时间:2025-11-16 21:23:51

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