Max of four numbers

Report a typo

Write a program that reads four integer numbers and prints the max of them.

The math library has a function to find the max of two values

Sample Input 1:

1
2
3
4

Sample Output 1:

4
Write a program in Kotlin
import kotlin.math.*

fun main() {
// write your code here
}
___

Create a free account to access the full topic