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