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