/* Author : Abhinav Modified : 03-12-2017 08:37:56 PM */ #include using namespace std; typedef long long ll; typedef vector vi; #define for(i,n) for(ll i=0; i> k; ll n_res = k*(k+1)/2; ll n_left = k*(k-1)/2; cout << n_res*n_res - n_left*n_left; return 0; }