Run ID:141069
提交时间:2025-12-21 09:43:04
#include <bits/stdc++.h> using namespace std; int main(){ int n = 1; int s = 9; while(s > 0) { n = (n + 1) * 2; s--; } cout << n; return 0; }