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