刷题目录 #include<cstdio> #include<cmath> using namespace std; int main() { int n,x; scanf("%d",&n); x=pow(2,n); printf("%d",x); return 0; }