scope 155 B

123456789101112131415161718
  1. a = 2;
  2. b = 3;
  3. print a;
  4. print b;
  5. function test() {
  6. print a;
  7. print b;
  8. a = 4;
  9. b = 5;
  10. print a;
  11. print b;
  12. }
  13. test();
  14. print a;
  15. print b;