1596: 【c14】重复字符串▅

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:6 Solved:6

Description

输入一个没有空白字符的字符串,判断该字符串是否为重复字符串。

重复字符串指的是该字符串可以由两个完全相同的字符串拼接而成的。

Input

输入为一行字符串(字符串中没有空白字符,字符串长度不超过100)。

Output

如果是重复字符串,输出yes;否则,输出no。

Sample Input Copy

studystudy

Sample Output Copy

yes