fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. goto stop;
  7.  
  8. cout << 123;
  9.  
  10.  
  11.  
  12. stop:
  13. cout << 456;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
456