Run ID:137242
提交时间:2025-11-16 21:09:32
#include <bits/stdc++.h> using namespace std; int F(int x) { if(x == 1) { return 10; } return F(x - 1) + 2; } int main() { cout << F(5) << endl; return 0; }