fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a,b, suma;
  6. cout<<"Podaj dwie liczby\n";
  7. cin >> a >> b;
  8. suma = 543 + 98;
  9. cout << "Suma wynosi: "<< suma;
  10. return 0;
  11. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
Podaj dwie liczby
Suma wynosi: 641