Are the numbers different?

Report a typo

Write a program that reads three numbers and checks if they are different (numbers are not equal to one another).

Output either true or false.

Sample Input 1:

5
5
9

Sample Output 1:

false

Sample Input 2:

1
2
3

Sample Output 2:

true
Write a program in Kotlin
fun main() {
// put your code here
}
___

Create a free account to access the full topic