def input_1():
a = raw_input('Please input something:\n')
global st
st = list(a)
print 'Now the list you just inputted is:\n',st
success = True
while success:
input_1()
for i in st:
c = st.count(i)
if c >= 3:
print 'You lost!'
print 'Error: The number of %s you just input is %s '%(i,c)
success = True
break
print 'The number of %s you inputted is %s time(s)'%(i,c)
success = False
print 'Success!'