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