class Program { static void Main(string[] args) { string str = Console.ReadLine(); if (chackStr(str)) { Console.WriteLine("YES"); }else{ Console.WriteLine("NO"); } } private static bool chackStr(string str) { bool result = false; for(int i= 0;i < str.Length-2; i++) { if(str.Substring(i,3) == "575") { result = true; break; } } return result; } }