fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b;
  6.  
  7. cin >> a;
  8. cin >>b;
  9.  
  10. cout << "suma liczb a i b równa się:" << a + b << endl;
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5220KB
stdin
15
9
stdout
suma liczb a i b równa się:24