t=int(input()) x=int(input()) ans=0 for i in range(1,t): b=int(input()) if abs(b-x)!=1: ans=1 break x=b if ans==1: print("F") else: print("T")