from math import comb for _ in range(int(input())): N,M,K = map(int,input().split()) if N > K * M: print("Straight") else: print("Flush")