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