#MSOLUTIONS2019B. Sumo

Sumo

Score : 200200 points

Problem Statement

Takahashi is competing in a sumo tournament. The tournament lasts for 1515 days, during which he performs in one match per day. If he wins 88 or more matches, he can also participate in the next tournament.

The matches for the first kk days have finished. You are given the results of Takahashi's matches as a string SS consisting of o and x. If the ii-th character in SS is o, it means that Takahashi won the match on the ii-th day; if that character is x, it means that Takahashi lost the match on the ii-th day.

Print YES if there is a possibility that Takahashi can participate in the next tournament, and print NO if there is no such possibility.

Constraints

  • 1k151 \leq k \leq 15
  • SS is a string of length kk consisting of o and x.

Input

Input is given from Standard Input in the following format:

SS

Output

Print YES if there is a possibility that Takahashi can participate in the next tournament, and print NO otherwise.

oxoxoxoxoxoxox
YES

Takahashi has 77 wins and 77 losses before the last match. If he wins that match, he will have 88 wins.

xxxxxxxx
NO