https://code-festival-2017-quala.contest.atcoder.jp/tasks/code_festival_2017_quala_a
解法
http://code-festival-2017-quala.contest.atcoder.jp/submissions/1614168
頭から"YAKI"を探していけばいい。
部分文字列を取ってきて比較した
string S; //-------------------------------------------------------------------------------------------------- void _main() { cin >> S; if (S.length() <= 3) printf("No\n"); else { if (S.substr(0, 4) == "YAKI") printf("Yes\n"); else printf("No\n"); } }