You consider a string of text to be boring if it contains only "a" characters and "b" characters. For example, "abbaba" is boring, while "abcccbabc" is not boring.
Given a string, figure out whether or not it is a boring string.
The only line of input contains a single string $$$s$$$, not containing spaces.
If $$$s$$$ is boring, as described above, output "YES" (no quotes). Otherwise, output "NO".
aaaaaa
YES
ccabbabbdd
NO
baaaaabad
NO
baaaaabba
YES