| CodeRams Practice Problem Archive |
|---|
| Finished |
You consider a number to be "lucky" if it has any digits equal to 7. For example, 7377, 87, and 98789 are lucky, while 6, 300, and 561 are not lucky. Given a number, figure out whether or not it is a lucky number.
The only line of input consists of a single integer $$$n$$$.
If $$$n$$$ is a lucky number, output "YES" (no quotes). Otherwise, output "NO" (no quotes).
7377
YES
1101
NO
3060
NO
| Name |
|---|


