def fun(): res = "NotFound" s = input() if s.find("404") >= 0: res = res.replace("Not", "") return res _ = input() print(fun())