function 83 B

123456789
  1. void test() {
  2. print 4;
  3. print 5;
  4. }
  5. void main() {
  6. test();
  7. test();
  8. }