知识点:运算

#include <iostream>
using namespace std;

int main() {
    int n = 0;

    cin >> n;

    cout << (1 << n) << endl;

    return 0;
}