// The methods are distinguished by argument types.
println(Math.round(15.4))
println(Math.round(15.4f))
println(Math.round(15.4.floatValue))
println(Math.round(15.5))
println(Math.round(15.5f))
println(Math.round(15.5.floatValue))
/*
run:
15
15
15
16
16
16
*/