extern fn print(i32) void;


//pub fn add_two(a: i32, b: i32) i32 {
export fn add_two(a: i32, b: i32) i32 {
  print(a + b);
  return a + b;
}