word=str.lower(input('Input a string to check if there\'s a/some repeated character(s).'))
REPEATED_CHARACTER=False
for n in range(len(word)):
if (word[n] in word[0:n]) or (word[n] in word[n+1:]):
print('有重复')
REPEATED_CHARACTER=True
break
else:
pass
if not REPEATED_CHARACTER:
print('无重复')