fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. { int i, j, k;
  7. float x, y, z;
  8.  
  9. i = 100; j = 2;
  10. k = i + j;
  11. x = 1.0; y = 0.02;
  12. z = x + y;
  13.  
  14. cout<<"k";
  15. return 0;
  16. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
k