执行以下程序, 输入"中国梦 2022", 输出结果是? ( )
w = input()
for x in w:
if x==' 0' or x ==' 2' :
continue
else:
w. replace(x, ' @' )
print(w)
中国梦 2022
中国@2022
@@@2022
2022 中国梦