#abc162a. [abc162_a]Lucky 7
[abc162_a]Lucky 7
Problem Statement
Given is a three-digit integer . Does contain the digit ?
If so, print Yes
; otherwise, print No
.
Constraints
Input
Input is given from Standard Input in the following format:
Output
If contains the digit , print Yes
; otherwise, print No
.
Sample Input 1
117
Sample Output 1
Yes
contains as its last digit.
Sample Input 2
123
Sample Output 2
No
does not contain the digit .
Sample Input 3
777
Sample Output 3
Yes