#include using namespace std; int main(){ int T,x,y=0,flag=0; cin >> T; while(T--){ cin >> x; if((y-x)!=1&&(y-x)!=-1){ flag++; break; } y=x; } if(flag) cout << "F\n"; else cout << "T\n"; }