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