fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b;
  6.  
  7. cout << "dowolny tekst" << endl;
  8.  
  9. cin >> a;
  10. cin >> b;
  11. cout << a+b << endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5284KB
stdin
23
43
stdout
dowolny tekst
66