PROGRAMMING:Delete a character
Input a string STR and a character ch from the keyboard, delete all the characters Ch in STR and output the deleted string.
###Input format:
Enter a string STR on the first line and a character ch on the second line.
###Output format:
Output the string after deleting the character ch.
###Input example:
```in
abcdefg1237899996
nine
```
###Output example:
```out
abcdefg123786
```
answer:If there is no answer, please comment
###Input format:
Enter a string STR on the first line and a character ch on the second line.
###Output format:
Output the string after deleting the character ch.
###Input example:
```in
abcdefg1237899996
nine
```
###Output example:
```out
abcdefg123786
```
answer:If there is no answer, please comment