#測資不公開
num = int(input())
while(num>0):
a,b,c = map(int,input().split())
num -= 1
if(b**2-(4*a*c)<0):
print('No')
else:
print('Yes')