Run ID:99498

提交时间:2024-11-29 22:03:56

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