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