#include using namespace std; long long sumOfGroup(long long k) { // Return the sum of the elements of the k'th group. long long s,c,t=(k*k)-k+1; s=0;c=0; while(c> k; long long answer = sumOfGroup(k); cout << answer << endl; return 0; }