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