#include #include #include #include #include #include #include long long int sumOfGroup(int k) { // Return the sum of the elements of the k'th group. if(k==1) return 1; long long t=k*k*k; return t; //long long t=k*k*k; } int main() { int k; scanf("%i", &k); long int answer = sumOfGroup(k); printf("%ld\n", answer); return 0; }