#include using namespace std; int main () { int sum = 0, i, n = 10; for (i=1; i<=10; i++) { sum += i; }; cout << "Sum = " << sum << endl; return 0; }