PROGRAMMING:Replace numeric characters in a string
Enter a string and a single character to replace all numeric characters in the string with the input characters.
###Input format:
Enter two lines, the first line is not more than 80 long and ends with carriage return. Enter a single character on the second line
###Output format:
Output the replaced string
###Input example:
For example:
```in
Hello World55!
a
```
###Output example:
```out
Hello Worldaa!
```
answer:If there is no answer, please comment
###Input format:
Enter two lines, the first line is not more than 80 long and ends with carriage return. Enter a single character on the second line
###Output format:
Output the replaced string
###Input example:
For example:
```in
Hello World55!
a
```
###Output example:
```out
Hello Worldaa!
```
answer:If there is no answer, please comment