s=input("明文: ")
p="" ; key=2
for ch in s:
if "0"<=ch and ch<="9":
p+=str((int (ch) +key) %10)
else:
p=ch+p
print("密文:", p)
若输入明文为“ym587”,则输出密文为( )