#D4884. Rainy Season
Rainy Season
Rainy Season
We have weather records at AtCoder Town for some consecutive three days. A string of length 3, S, represents the records - if the i-th character is S
, it means it was sunny on the i-th day; if that character is R
, it means it was rainy on that day.
Find the maximum number of consecutive rainy days in this period.
Constraints
- |S| = 3
- Each character of S is
S
orR
.
Input
Input is given from Standard Input in the following format:
S
Output
Print the maximum number of consecutive rainy days in the period.
Examples
Input
RRS
Output
2
Input
SSS
Output
0
Input
RSR
Output
1
inputFormat
Input
Input is given from Standard Input in the following format:
S
outputFormat
Output
Print the maximum number of consecutive rainy days in the period.
Examples
Input
RRS
Output
2
Input
SSS
Output
0
Input
RSR
Output
1
样例
RSR
1