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