Problem2210--ABC162A - Lucky 7

2210: ABC162A - Lucky 7

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Problem Statement

Given is a three-digit integer NN. Does NN contain the digit 77?
If so, print Yes; otherwise, print No.

Constraints

  • 100 \leq N \leq 999100N999

Input

Input is given from Standard Input in the following format:
NN

Output

If NN contains the digit 77, print Yes; otherwise, print No.

Sample Input Copy

117

Sample Output Copy

Yes

HINT

117 contains 77 as its last digit.

Source/Category