1.Val max3 = a.max(b) (Extension Function is One of the idiomatic Solutions in Kotlin)
2.Val max = a > b ? a : b
3.Val max = if (a > b) a else b
4.If (a > b) max = a else max = b
Answer:1