n = input() if n[:len(n) // 2] == n[len(n) // 2:]: print('YES') else: print('NO')