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