#32979: C++版本


Ivan20092009 (零二)

學校 : 臺北市私立延平高級中學
編號 : 167374
來源 : [36.236.69.236]
最後登入時間 :
2023-07-02 14:38:15
g216. 2^(10^n) | From: [203.72.178.2] | 發表日期 : 2022-11-21 10:13

#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;
}

 
 
 
ZeroJudge Forum