100 atcoder#ABC139A. [ABC139A] Tenki
[ABC139A] Tenki
Score : points
Problem Statement
You will be given a string of length representing the weather forecast for three days in the past.
The -th character of represents the forecast for the -th day. S
, C
, and R
stand for sunny, cloudy, and rainy, respectively.
You will also be given a string of length representing the actual weather on those three days.
The -th character of represents the actual weather on the -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
- and are strings of length each.
- and consist of
S
,C
, andR
.
Input
Input is given from Standard Input in the following format:
Output
Print the number of days for which the forecast was correct.
CSS
CSR
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.
SSR
SSR
3
RRR
SSS
0