#abc192b. [abc192_b]uNrEaDaBlE sTrInG

[abc192_b]uNrEaDaBlE sTrInG

Problem Statement

We call a string hard-to-read when its odd-positioned (11-st, 33-rd, 55-th, ... from the beginning) characters are all lowercase English letters and its even-positioned characters (22-nd, 44-th, 66-th, ... from the beginning) are all uppercase English letters.

Determine whether a string SS is hard-to-read.

Constraints

  • SS consists of uppercase and lowercase English letters.
  • The length of SS is between 11 and 10001000 (inclusive).

Input

Input is given from Standard Input in the following format:

SS

Output

If SS is hard-to-read, print Yes; otherwise, print No.


Sample Input 1

dIfFiCuLt

Sample Output 1

Yes

The odd-positioned characters are all lowercase and the even-positioned characters are all uppercase, so it is hard-to-read.


Sample Input 2

eASY

Sample Output 2

No

The 33-rd character is not lowercase, so it is not hard-to-read.


Sample Input 3

a

Sample Output 3

Yes