Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 100 点
問題文
りんごさんは、すぬけ君にプレゼントを贈ろうとしています。
すぬけ君の好物が焼肉であることを知ったりんごさんは、すぬけ君は名前が YAKI
から始まるものを好み、そうでないものを好まないと判断しました。
りんごさんが贈ろうと思っているものの名前を表す文字列 S が与えられます。S が YAKI
から始まるかどうか判定してください。
制約
- 1 \leq |S| \leq 10
- S は英大文字からなる
入力
入力は以下の形式で標準入力から与えられる。
S
出力
S が YAKI
から始まるなら Yes
を、そうでないなら No
を出力せよ。
入力例 1
YAKINIKU
出力例 1
Yes
YAKINIKU
は YAKI
で始まります。
入力例 2
TAKOYAKI
出力例 2
No
TAKOYAKI
は YAKI
で始まりません。
入力例 3
YAK
出力例 3
No
Score : 100 points
Problem Statement
Ringo is giving a present to Snuke.
Ringo has found out that Snuke loves yakiniku (a Japanese term meaning grilled meat. yaki: grilled, niku: meat). He supposes that Snuke likes grilled things starting with YAKI
in Japanese, and does not like other things.
You are given a string S representing the Japanese name of Ringo's present to Snuke. Determine whether S starts with YAKI
.
Constraints
- 1 \leq |S| \leq 10
- S consists of uppercase English letters.
Input
Input is given from Standard Input in the following format:
S
Output
If S starts with YAKI
, print Yes
; otherwise, print No
.
Sample Input 1
YAKINIKU
Sample Output 1
Yes
YAKINIKU
starts with YAKI
.
Sample Input 2
TAKOYAKI
Sample Output 2
No
TAKOYAKI
(a Japanese snack. tako: octopus) does not start with YAKI
.
Sample Input 3
YAK
Sample Output 3
No