Write a program that reads the numbers a, b, c and checks if there's a pair of them that adds up to exactly 20.
The program must output true or false.
Write a program that reads the numbers a, b, c and checks if there's a pair of them that adds up to exactly 20.
The program must 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