fork download
  1. #include <iostream>
  2.  
  3. int x = 42;
  4. int main()
  5. {
  6. std::cout << x << std::endl;
  7.  
  8. // 100500 строк кода
  9.  
  10. float x = 42.5;
  11. std::cout << x << std::endl;
  12.  
  13. return EXIT_SUCCESS;
  14. }
Success #stdin #stdout 0s 4388KB
stdin
Standard input is empty
stdout
42
42.5