#include using namespace std; long long sumOfGroup(long long k) { // Return the sum of the elements of the k'th group. return k*k*k; } int main() { int k; cin >> k; long long answer = sumOfGroup(k); cout << answer << endl; return 0; }