return 83 B

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