100730: [AtCoder]ABC073 A - September 9

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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

Input

题意翻译

题目大意: 今天日本是9月9日,人们爱9,所以请你输入一个正整数N判断他是否有9,如果有输出"Yes",否则输出"No"。 感谢@鼬神 提供的翻译

加入题单

上一题 下一题 算法标签: