#abc073a. [abc073_a]September 9

[abc073_a]September 9

Problem Statement

It is September 99 in Japan now.

You are given a two-digit integer NN. Answer the question: Is 99 contained in the decimal notation of NN?

Constraints

  • 10N9910≤N≤99

Input

Input is given from Standard Input in the following format:

NN

Output

If 99 is contained in the decimal notation of NN, print Yes; if not, print No.


Sample Input 1

29

Sample Output 1

Yes

The one's digit of 2929 is 99.


Sample Input 2

72

Sample Output 2

No

7272 does not contain 99.


Sample Input 3

91

Sample Output 3

Yes