t=int(input()) hwd=[] for _ in range(t): h,w,d=map(int,input().split()) hwd.append([h,w,d]) # 対称攻めが可能な方が勝ち # 先手が長方形の中心を通る線分を引けるか? 引けるなら先手勝ちで、それ以外は後手勝ち # 長方形の周上から周上へ延びる線分で中心を通るものの内、最も短い線分がD以下なら先手勝ち for h,w,d in hwd: tate=h**2 if w%2==0 else h**2+1 yoko=w**2 if h%2==0 else w**2+1 if min(tate,yoko)<=d**2: print("N") else: print("S")