#ABC139A. Tenki

Tenki

题目描述

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

The ii-th character (1i3)(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 (1i3)(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.

给你一个长度为 33 的字符串 SS 表示过去三天的天气预报。

SS 中的 ii /第三个字符 (1i3)(1 \leq i \leq 3) 表示 ii /第三天的天气预报。S"、"C "和 "R "分别代表晴天、多云和雨天。

您还将得到一个长度为 33 的字符串 TT 代表这三天的实际天气。

SS 中的 ii 个字符 (1i3)(1 \leq i \leq 3) 代表第 ii 天的实际天气。S"、"C "和 "R "分别代表晴天、多云和雨天。

打印预报正确的天数。

输入格式

输入内容按以下格式标准输入:

SS
TT

输出格式

打印预测正确的天数。

样例 #1

样例输入 #1

CSS
CSR

样例输出 #1

2

样例 #2

样例输入 #2

SSR
SSR

样例输出 #2

3

样例 #3

样例输入 #3

RRR
SSS

样例输出 #3

0

说明

数据规模与约定

  • SSTT 分别是长度为 33 的字符串。
  • SSTTSCR 组成。

样例 11 解释

  • 第一天,天气预报是多云,结果确实是多云。
  • 第二天,天气预报为晴天,结果确实是晴天。
  • 第三天,天气预报说是晴天,结果却下起了雨。

因此,在这种情况下,有两天的预报是正确的。