Unique number

Report a typo

Three numbers a, b, c are fed to the input of the program, two of them are the same


Output the number that has no pair, i.e. the only number that does not repeat

Sample Input 1:

8 8 11

Sample Output 1:

11
Write a program in Kotlin
fun main() {
val (a, b, c) = readLine()!!.split(" ").map { it.toInt() }
// write your code here
}
___

Create a free account to access the full topic