#abc139a. [abc139_a]Tenki

[abc139_a]Tenki

Problem Statement

You will be given a string SS of length 33 representing the weather forecast for three days in the past.

The ii-th character (1leqileq3)(1 \\leq i \\leq 3) of SS represents the forecast for the ii-th day. S, C, and R stand for sunny, cloudy, and rainy, respectively.

You will also be given a string TT of length 33 representing the actual weather on those three days.

The ii-th character (1leqileq3)(1 \\leq i \\leq 3) of SS represents the actual weather on the ii-th day. S, C, and R stand for sunny, cloudy, and rainy, respectively.

Print the number of days for which the forecast was correct.

Constraints

  • SS and TT are strings of length 33 each.
  • SS and TT consist of S, C, and R.

Input

Input is given from Standard Input in the following format:

SS TT

Output

Print the number of days for which the forecast was correct.


Sample Input 1

CSS
CSR

Sample Output 1

2
  • For the first day, it was forecast to be cloudy, and it was indeed cloudy.
  • For the second day, it was forecast to be sunny, and it was indeed sunny.
  • For the third day, it was forecast to be sunny, but it was rainy.

Thus, the forecast was correct for two days in this case.


Sample Input 2

SSR
SSR

Sample Output 2

3

Sample Input 3

RRR
SSS

Sample Output 3

0