return_value 74 B

123456
  1. function test(a, b) {
  2. print 5;
  3. return a + b;
  4. }
  5. print test(2, 4);