#include using namespace std; int main() { int T; cin>>T; int p=0; char res='T'; while (T--) { int x; cin>>x; if (abs(x-p)!=1) res='F'; p=x; } cout<