Problem D: 字符串---字母改数字

Problem D: 字符串---字母改数字

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 547  Solved: 341
[Status] [Submit] [Creator:]

Description

输入一个字符串,将其中的A~I这9个大写字母更改成从1开始的数字,然后显示出来,比如:A改为1,B改为2,C改为3。

Input

一行字符串(长度不超过100),不包含空格

Output

将字符串中符合要求的字母转换成对应的数字其他字符不改变

Sample Input Copy

ABCa#K

Sample Output Copy

123a#K