#247. doubleX

doubleX

Background

Description

Given a string, return true if the first instance of "x" in the string is immediately followed by another "x".

Format

Input

Output

Samples

axxbb
true
axaxax
false
xxxxx
true

Limitation

1s, 1024KiB for each test case.