#Lutece0794. Balloon Game

Balloon Game

Migrated from Lutece 794 Balloon Game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

In referees' office, a long line of balloons are prepared. All balloons of the same color are are adjacent to each other.

But God Kufeng happened to destroy some balloons. To help the DAGE (Aniki, Big Brother), Kennethsnow and Sakuya are going to solve it.

Luckily, there are no two destroyed balloons which are adjacent.

The destroyed balloons are shown in ?, and Kennethsnow and Sakuya can replace those places with new balloons of any color. The only limitation is that, all the balloons of the same color including the remaining ones and new ones are adjacent to each other, still.

So, for a?b?c, both aabcc and aabdc are OK, but they can't change the balloons to abbac, since all balloons of color a are not adjacent to each other anymore.

Kennethsnow wants the total number of different colors to be odd, while Sakuya wants it to be even. So they decides to play a game.

And they take turns replacing a destroyed balloon with a new one. Kennethsnow moves first, then Sakuya, then Kennethsnow again ...

Each of them can choose the color of the balloon as they like, as long as the limitation is not violated.

Kennethsnow wants you to find whether he has a strategy to win, if both of them play optimally.

Input

There is one line in the input, containing a string which consists of aza - z and ??.

aa - zz here means 2626 kinds of different color, and the ?? means the destroyed balloon.

The length of the string will not exceed 10510^5

Output

Output Yes if Kennethsnow can win, otherwise output No.

Samples

a?z
Yes
a?z?b
No

Note

Though the showing colors in input case will only be a - z, you can use any color.

Resources

the 12th UESTC Programming Contest Preliminary