AT_abc451_a [ABC451A] illegal

Description

In the country of AtCoder where Takahashi lives, there is a peculiar law: "You must not write a string whose length is a multiple of $ 5 $ ." Takahashi wrote a string $ S $ . Determine whether he is violating this law.

Input Format

The input is given from Standard Input in the following format: > $ S $

Output Format

If Takahashi is violating the law, output `Yes`; otherwise, output `No`.

Explanation/Hint

### Sample Explanation 1 `legal` is a string of length $ 5 $ . Thus, Takahashi is violating the law, so output `Yes`. ### Sample Explanation 2 `atcoder` is a string of length $ 7 $ . Thus, Takahashi is not violating the law, so output `No`. ### Constraints - $ S $ is a string of length between $ 1 $ and $ 10 $ , inclusive. - $ S $ consists of lowercase English letters.