代码 s=input() m=input() a,b=m.split(" ") for i in range(len(s)-1,-1,-1): if s[i] == b: print("%d %s"%(i,b)) if s[i] == a: print("%d %s"%(i,a))