#include <iostream>
using namespace std;
string a,b,c,d,e,f,g,x;
int main()
{cout << "Podaj 7 liczb calkowitych." << endl;
cin >>a;cin >>b;cin >>c;cin >>d;cin >>e;cin >>f;cin >>g;
x=a+b+c+d+e+f+g;cout<<"Suma tych liczb to:"<<x;
return 0;
}
Po wrzuceniu liczb np. 1,2,3,4,5,6,7 wynik wyskakuje 1234567. Jaką formułę dodać by program zsumował te liczby ? Jakby co jestem początkujący i jestem na 5 odcinku c++.