fn simple1(x : i32, y : i32) -> i32 {
  return x + y;
}

fn caller(x: i32) -> i32 {
  return simple1(x, 3);
}