for _ in range(int(input())): n,m,k=map(int,input().split()) if 2*m>=2*n-k+1: print("Flush") else: print("Straight")