#include <bits/stdc++.h>
#define INT long long int
#define MOD 1000000007
using namespace std;
char s[101], s2[101];
int main()
{
    INT T;
    cin>>T;
    for(int x = 1 ; x <= T ; x++)
    {
        sprintf(s,".%d.in", x);
        FILE *in = fopen(s, "r");

        INT a, b, c, t;
        //cin>>a>>b>>c;
        fscanf(in,"%lld%lld%lld",&a,&b,&c);
        if( a > b ) t = a, a = b, b = t;
        if( b > c ) t = b, b = c, c = t;
        sprintf(s2, ".%d.out", x);
        FILE *out = fopen(s2, "w");
        fprintf(out, "%s\n", (a+b>c?"Yes":"No") );
        fclose(in);
        fclose(out);
    }

}
