提交时间:2023-10-04 10:05:24

运行 ID: 104831

#include<iostream> using namespace std; int main() { long long b=1; for(int a=1;a<=9;a++) b=(b+1)*2; cout<<b; return 0; }