#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { int n; cin >> n; int a = pow(2, n); cout << a; return 0; }