EPS/2024/01/29-01-24/football.py

15 lines
249 B
Python
Raw Permalink Normal View History

2024-01-30 15:04:05 +01:00
def main():
nb = input()
team = "0"
count = 0
for i in nb:
if i != team:
team = i
count = 0
count += 1
if count >= 7:
print("YES")
return
print("NO")
main()