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. test(a);
  11. test(b);
  12. }
  13. {
  14. int c = 7;
  15. test(c);
  16. test(d);
  17. }
  18. test(a);
  19. test(b + 10);
  20. test(c);
  21. test(d);
  22. }