while True:
try:
string=input()
str_c=""
str_r=[]
for i in string:
if(str_c.find(i)==-1):
str_c=str_c+i
str_r.append(i)
else:
try: #如果一个元素连续出现两次以上,避免运行错误
str_r.remove(i) #移除重复出现的元素
except:
continue
if(len(str_r)>0):
print(str_r[0])
elif(len(str_r)==0):
print(-1)
except:
break