10 lines
162 B
Python
10 lines
162 B
Python
def problem_p02711(input_data):
|
|
N = eval(input_data)
|
|
|
|
if N[0] == "7" or N[1] == "7" or N[2] == "7":
|
|
|
|
return "Yes"
|
|
|
|
else:
|
|
|
|
return "No"
|