s=input()
y=""
for i in range(len(s)):
c=s[i]
if c>="A" and c<="Z":
c=chr(ord(c)+3)
y=c+y
print(y)
运行上述程序,若输入的s内容为“A1b2C3”,则显示的是:( )
微信扫码预览、分享更方便