Monopoly in Chefland Solution

# cook your dish here
T = int(input())
for _ in range(T):
    R1,R2,R3 = map(int, input().split())
    if R1+R2<R3:
        print('yes')
    elif R2+R3<R1:
        print('yes')
    elif R1+R3<R2:
        print('yes')
    else:
        print('no')
1 Like