# No.739 大事なことなので2度言います s = input() center = len(s) // 2 print('YES' if s[:center] == s[center:] else 'NO')