Run ID:155372

提交时间:2026-06-07 11:00:57

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