#include using namespace std; int main() { int a, b, c; b = 0; a = 0; c = 0; setlocale(0, ""); while (a < 6) { a++; b = b + a; c = c + b; } cout << "Сумма чисел :" << b << endl; cout << "Сумма чисел С = " << c << endl; system("pause"); return 0; }