12345678910
int main () { int sum = 0; for (int x = 1; x <= 14; x++) { sum+= x*x*x; } cout << sum; return 0; }