PROGRAMMING:Count the number of character occurrences
This problem requires the preparation of procedures, statistics and output of a given character in a given string of times.
###Input format:
Input the first line to give a character string (less than 80 characters) ending with carriage return; Enter a character on the second line.
###Output format:
Outputs the number of times a given character appears in a given string on a line.
###Input example:
```in
programming is More fun!
m
```
###Output example:
```out
two
```
answer:If there is no answer, please comment
###Input format:
Input the first line to give a character string (less than 80 characters) ending with carriage return; Enter a character on the second line.
###Output format:
Outputs the number of times a given character appears in a given string on a line.
###Input example:
```in
programming is More fun!
m
```
###Output example:
```out
two
```
answer:If there is no answer, please comment