fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. setlocale(0, "");
  7. /*7*/; int a, b ;
  8. cout << "1";
  9. cin >> a;
  10. cout <<"2";
  11. cin >> b ;
  12. /*12*/ int c = a + b;
  13. cout << "=" << c << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 5048KB
stdin
5 9
stdout
12=14