fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a,b, suma;
  7. cout <<"Podaj dwie liczby \n";
  8. cin >>a >> b;
  9. suma = a+b;
  10. cout <<"Suma:" << suma;
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5360KB
stdin
6
8
stdout
Podaj dwie liczby 
Suma:14