using System; public class Hello { static void Main() { Console.ReadLine(); var s = Console.ReadLine().Trim(); Console.WriteLine(s.IndexOf("404") == -1 ? "NotFound" : "Found"); } }