CodechefAug 11, 2025

Sum it

Hazrat Ali

Codechef

Alice, being a good friend of Bob, told him that the answer to this question is C.
Bob doesn't completely trust Alice and asked you to tell him if the answer given by Alice is correct or not.
If the answer is correct print "YES", otherwise print "NO" (without quotes).

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases.
  • The first and only line of each test case consists of three space-separated integers A,B,A,B, and C.

Output Format

For each test case, output on a new line the answer: YES if Alice gave the right answer, and NO otherwise.

Each character of the output may be printed in either uppercase or lowercase, i.e, the outputs YesYESyEs and yes will be treated as equivalent.

Constraints

  • 1≤T≤100
  • 0≤A,B,C≤100

Sample 1:

Input
3
1 2 3
4 5 9
2 3 6
Output
 
YES
YES
NO

Solution

T = int(input())

for _ in range(T):
    A, B, C = map(int, input().split())
    if A + B == C:
        print("YES")
    else:
        print("NO")




Comments