s = "001100" if s == s[::-1]: print(s, "is a Palindrome string.") else: print("Not a palindrome string.")