a=input() b=sorted(a,key=lambda x:a.count(x)) for i in b: if b.count(i)==1: print(i) break else: print("-1") break
暂无评论,快来抢首评~
相关推荐