Run ID:8013

提交时间:2025-06-07 09:05:10

#include<bits/stdc++.h> using namespace std; int main(){ long long y=1,x=2,s=30; while(s>0){ y=y+x; x=x*2; s--; } cout<<y<<endl; return 0; }