fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. {
  9. int x = 5;
  10. System.out.println(x);
  11. }
  12. {
  13. int x = 7;
  14. System.out.println(x);
  15. }
  16. }
  17. }
Success #stdin #stdout 0.02s 245632KB
stdin
Standard input is empty
stdout
5
7