s = input().strip() if len(s) % 2 == 1 : print("NO") else : if s[:int(len(s)/2)] == s[int(len(s)/2):] : print("YES") else : print("NO")