#include using namespace std; signed main(){ int n,pre=0;cin>>n; bool ok=1; while(n--){ int a;cin>>a; ok&=abs(a-pre)==1; pre=a; } cout<<(ok?"T":"F")<