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