よじろめ覚書

私の理解度重視のソースコードです。

ABC140A - Password

問題:A - Password

#include <iostream>
using namespace std;

int main(void) {
    int n;

    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> n;
    cout << n * n * n << "\n";
    return 0;
}