fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x, y;
  5. switch (x) {
  6. case 0:
  7. break;
  8. case 1:
  9. break;
  10. case 2:
  11. switch (y) {
  12. case 0:
  13. break;
  14. case 1:
  15. break;
  16. }
  17. }
  18. // your code goes here
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Standard output is empty