S = input() n = len(S) if n % 2 == 1 or S[:n // 2] != S[n // 2:]: print('NO') else: print('YES')