Check the sum

Report a typo

Write a program that reads numbers a, b, c and checks whether any pair of arguments (ab, ac, or bc) sums to 20.

Output true or false.

Sample Input 1:

1
2
3

Sample Output 1:

false

Sample Input 2:

4
16
7

Sample Output 2:

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

Create a free account to access the full topic