#include <bits/stdc++.h>
#include <cmath>
using namespace std;
int main(){
int n;
while(cin >> n){
if(n == 0){
cout << 2;
}
else{
int num = pow(2,n) + 1;
cout << num << endl;
}
}
return 0;
}
0 回复
0 转发
0 喜欢
0 阅读



