Odpowiedź :
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cout << "Podaj a: ";
cin >> a;
cout << "Podaj b: ";
cin >> b;
cout << "Podaj c: ";
cin >> c;
cout << "Suma a+b+c wynosi " << a + b + c;
return 0;
}
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cout << "Podaj a: ";
cin >> a;
cout << "Podaj b: ";
cin >> b;
cout << "Podaj c: ";
cin >> c;
cout << "Suma a+b+c wynosi " << a + b + c;
return 0;
}