Skip to content

Instantly share code, notes, and snippets.

@qjatn0120
Created October 13, 2022 16:59
Show Gist options
  • Save qjatn0120/b403297e01e59474fd495aa1874f3d22 to your computer and use it in GitHub Desktop.
Save qjatn0120/b403297e01e59474fd495aa1874f3d22 to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
int main(){
cin.tie(nullptr), ios::sync_with_stdio(false);
int t, a, b, c;
cin >> t;
while(t--){
cin >> a >> b >> c;
bool ans = false;
if(a == b + c) ans = true;
if(b == a + c) ans = true;
if(c == a + b) ans = true;
cout << (ans ? "YES\n" : "NO\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment