fork download
  1.  
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main() {
  6. cout<<"hello world";
  7. int x;
  8. cin>>x;
  9. cout<<(x+5);
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5260KB
stdin
Standard input is empty
stdout
hello world32770