fork download
  1. #include "iostream"
  2. using namespace std;
  3. int main()
  4. {
  5. int x = 4;
  6. int y = 5;
  7. int z =x+y;
  8. cout << z;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
9