import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); int[] ints = new int[n]; for (int i=0; i 1 || ints[0] < -1) {System.out.println("F");} else { boolean possible = true; for (int i=0; i 1) {possible = false;} } System.out.println(possible==true?"T":"F"); } } }