#304. xyzThere

xyzThere

Background

Description

Return true if the given string contains an appearance of "xyz" where the xyz is not directly preceeded by a period (.). So "xxyz" counts but "x.xyz" does not.

Format

Input

Output

Samples

abcxyz
true
abc.xyz
false
xyz.abc
true

Limitation

1s, 1024KiB for each test case.