t = gets.chomp.to_i is_possible = true location = 0 t.times { x = gets.chomp.to_i if (x - location).abs != 1 is_possible = false break end location = x } if is_possible puts 'T' else puts 'F' end