import strutils let s = readLine stdin var bool = true for i, v in s: if i mod 2 == 1: if not isSpaceAscii v: bool = false elif not isLowerAscii v: bool = false if bool: echo "Yes" else: echo "No"