#32979: C++版本


Ivan20092009 (cloveت)


#include <iostream>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    cout << "2^(10^" << n << ")" << endl;

    return 0;
}