A - Lucky 7 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

3 桁の整数 N が与えられます。N のいずれかの桁に数字の 7 は含まれますか?

含まれるなら Yes を、含まれないなら No を出力してください。

制約

  • 100 \leq N \leq 999

入力

入力は以下の形式で標準入力から与えられる。

N

出力

N のいずれかの桁に 7 が含まれるなら Yes を、含まれないなら No を出力せよ。


入力例 1

117

出力例 1

Yes

1171 の位が 7 です。


入力例 2

123

出力例 2

No

1237 を含みません。


入力例 3

777

出力例 3

Yes

Score : 100 points

Problem Statement

Given is a three-digit integer N. Does N contain the digit 7?

If so, print Yes; otherwise, print No.

Constraints

  • 100 \leq N \leq 999

Input

Input is given from Standard Input in the following format:

N

Output

If N contains the digit 7, print Yes; otherwise, print No.


Sample Input 1

117

Sample Output 1

Yes

117 contains 7 as its last digit.


Sample Input 2

123

Sample Output 2

No

123 does not contain the digit 7.


Sample Input 3

777

Sample Output 3

Yes