#include #include void solve() { int t; std::cin >> t; int p = 0; while (t--) { int x; std::cin >> x; if (std::abs(p - x) != 1) { std::cout << "F" << std::endl; return; } p = x; } std::cout << "T" << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }