""" 全部aに置き換える誤解法 """ S = input() ANS = [] for i in S: if i == "?": ANS.append("a") else: ANS.append(i) print ("".join(ANS))