// yukicoder: No.627 ランダムウォークの軌跡 // 2019.5.1 bal4u #include int main() { int T, x0, x; scanf("%d", &T); x0 = 0; while (T--) { scanf("%d", &x); if (x != x0-1 && x != x0+1) { puts("F"); return 0; } x0 = x; } puts("T"); return 0; }