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