提交时间:2023-10-04 10:03:23

运行 ID: 104827

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