A - September 9
Editorial
/


Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 点
問題文
今、日本は 月 日です。 二桁の整数 が与えられるので、十進法で に が含まれるか答えてください。
制約
入力
入力は以下の形式で標準入力から与えられる。
出力
が含まれるとき Yes
、含まれないとき No
を出力せよ。
入力例 1Copy
Copy
29
出力例 1Copy
Copy
Yes
の一の位は です。
入力例 2Copy
Copy
72
出力例 2Copy
Copy
No
に は含まれません。
入力例 3Copy
Copy
91
出力例 3Copy
Copy
Yes
Score : points
Problem Statement
It is September in Japan now.
You are given a two-digit integer . Answer the question: Is contained in the decimal notation of ?
Constraints
Input
Input is given from Standard Input in the following format:
Output
If is contained in the decimal notation of , print Yes
; if not, print No
.
Sample Input 1Copy
Copy
29
Sample Output 1Copy
Copy
Yes
The one's digit of is .
Sample Input 2Copy
Copy
72
Sample Output 2Copy
Copy
No
does not contain .
Sample Input 3Copy
Copy
91
Sample Output 3Copy
Copy
Yes