提交时间:2023-10-04 10:04:22
运行 ID: 104828
#include<iostream> using namespace std; int main() { long long b=1; for(int a=1;a<=10;a++) b=b*2+1; cout<<b; return 0; }