#include #include #include #include #include #include #include static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using namespace std; template constexpr T INF = ::numeric_limits::max() / 32 * 15 + 208; int main() { int t; cin >> t; int x; cin >> x; if(x != -1 && x != 1){ cout << "F\n"; return 0; } for (int i = 0; i < t-1; ++i) { int y; cin >> y; if(abs(y-x) != 1){ cout << "F\n"; return 0; } x = y; } cout << "T\n"; return 0; }