A - Tenki 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

ある 3 日間の天気予報が、長さ 3 の文字列 S として与えられます。

Si~(1 \leq i \leq 3) 文字目が S のとき、i 日目の天気予報が晴れだったことを、C のときは曇りだったことを、R のときは雨だったことを意味します。

また 3 日間の実際の天気が、長さ 3 の文字列 T として与えられます。

Ti~(1 \leq i \leq 3) 文字目が S のとき、i 日目の実際の天気が晴れだったことを、C のときは曇りだったことを、R のときは雨だったことを意味します。

3 日間で天気予報が的中した日が何日あるかを出力してください。

制約

  • S および T は長さ 3 の文字列である。
  • S および TS, C, R のみからなる。

入力

入力は以下の形式で標準入力から与えられる。

S
T

出力

3 日間で天気予報が的中した日が何日あるかを出力せよ。


入力例 1

CSS
CSR

出力例 1

2
  • 1 日目の天気予報は曇り、実際の天気は曇りなので、この日の天気予報は的中している。
  • 2 日目の天気予報は晴れ、実際の天気は晴れなので、この日の天気予報は的中している。
  • 3 日目の天気予報は晴れ、実際の天気は雨なので、この日の天気予報は的中していない。

以上より、このケースでは 3 日間で天気予報が的中した日が 2 日あります。


入力例 2

SSR
SSR

出力例 2

3

入力例 3

RRR
SSS

出力例 3

0

Score : 100 points

Problem Statement

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

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

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

The i-th character (1 \leq i \leq 3) of S represents the actual weather on the i-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

  • S and T are strings of length 3 each.
  • S and T consist of S, C, and R.

Input

Input is given from Standard Input in the following format:

S
T

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