func main(a, b i64) i64 { let x = 2 if a < b { x := 3 + a } else { x := 4 + (x * b) } return x }