#include #include #include #include #include using namespace std; typedef __int64 LL; bool ok(LL a,LL b,LL c) { if(a==c||b==c)return true; for(int i=0;;i++) { if(a+b==c)return true; if(a+b>c)return false; LL d=b; b=a+b; a=d; } return false; } int main() { int tcase; cin>>tcase; LL a,b,c; while(tcase--) { cin>>a>>b>>c; if(ok(a,b,c))puts("Yes"); else puts("No"); } return 0; }