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.
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
3Sample Output 1:
falseSample Input 2:
4
16
7Sample Output 2:
trueCreate a free account to access the full topic