#D5412. Tap Dance
Tap Dance
Tap Dance
Takahashi will do a tap dance. The dance is described by a string S where each character is L
, R
, U
, or D
. These characters indicate the positions on which Takahashi should step. He will follow these instructions one by one in order, starting with the first character.
S is said to be easily playable if and only if it satisfies both of the following conditions:
- Every character in an odd position (1-st, 3-rd, 5-th, \ldots) is
R
,U
, orD
. - Every character in an even position (2-nd, 4-th, 6-th, \ldots) is
L
,U
, orD
.
Your task is to print Yes
if S is easily playable, and No
otherwise.
Constraints
- S is a string of length between 1 and 100 (inclusive).
- Each character of S is
L
,R
,U
, orD
.
Input
Input is given from Standard Input in the following format:
S
Output
Print Yes
if S is easily playable, and No
otherwise.
Examples
Input
RUDLUDR
Output
Yes
Input
DULL
Output
No
Input
UUUUUUUUUUUUUUU
Output
Yes
Input
ULURU
Output
No
Input
RDULULDURURLRDULRLR
Output
Yes
inputFormat
Input
Input is given from Standard Input in the following format:
S
outputFormat
Output
Print Yes
if S is easily playable, and No
otherwise.
Examples
Input
RUDLUDR
Output
Yes
Input
DULL
Output
No
Input
UUUUUUUUUUUUUUU
Output
Yes
Input
ULURU
Output
No
Input
RDULULDURURLRDULRLR
Output
Yes
样例
RUDLUDR
Yes