set 305 B

12345678910111213141516171819202122
  1. void main() {
  2. int a = 3;
  3. int b = 4;
  4. int c = 2 + 4;
  5. int d = c + 0;
  6. c = 1 + 4;
  7. {
  8. int a = 5;
  9. int b = 6;
  10. print a;
  11. print b;
  12. }
  13. {
  14. int c = 7;
  15. print c;
  16. print d;
  17. }
  18. print a;
  19. print b + 10;
  20. print c;
  21. print d;
  22. }