fork download
  1. #include <iostream>
  2.  
  3. int f();
  4. int f();
  5. int f();
  6. int f();
  7. int f();
  8. int f();
  9. // etc...
  10.  
  11. int f() {
  12. return 1;
  13. }
  14.  
  15. int main() {
  16. std::cout << f() << '\n';
  17. return 0;
  18. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
1