Run ID:141064

提交时间:2025-12-21 09:40:40

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