Digit Frequency

easy
1. You are given a number n.
2. You are given a digit d.
3. You are required to calculate the frequency of digit d in number n.

Input Format

A number n A digit d

Output Format

A number representing frequency of digit d in number n

Constraints

0 <= n <= 10^9
0 <= d <= 9
  

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
994543234
 4
Output
3
Next
Decimal To Any Base

Related Questions