import sys i=input() "yukicoder" in i.lower() and sys.stdout.write("Yes\n") "yukicoder" not in i.lower() and sys.stdout.write("No\n")