Tenki

AtCoder
IDabc139_a
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
CSS
CSR
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.
Input #2
SSR
SSR
Output #2
3
Input #3
RRR
SSS
Output #3
0
API Response (JSON)
{
  "problem": {
    "name": "Tenki",
    "description": {
      "content": "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.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc139_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You will be given a string $S$ of length $3$ representing the weather forecast for three days in the past.\nThe $i$\\-th character $(1 \\leq i \\leq 3)$ of $S$ represents the forecast for the $i$\\-th day....",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments