fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout << "hello world" << endl;
  6. int a=1;
  7. int b=14;
  8. cout << a+b << endl;
  9. if(a==1)
  10. cout << 6 << endl;
  11. double c=0.141;
  12. cout << c+a <<endl;
  13. cout << a*b <<endl;// your code goes here
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
hello world
15
6
1.141
14