Algorithm


. Snow Footprints
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

There is a straight snowy road, divided into n blocks. The blocks are numbered from 1 to n from left to right. If one moves from the i-th block to the (i + 1)-th block, he will leave a right footprint on the i-th block. Similarly, if one moves from the i-th block to the (i - 1)-th block, he will leave a left footprint on the i-th block. If there already is a footprint on the i-th block, the new footprint will cover the old one.

At the beginning, there were no footprints. Then polar bear Alice starts from the s-th block, makes a sequence of moves and ends in the t-th block. It is known that Alice never moves outside of the road.

You are given the description of Alice's footprints. Your task is to find a pair of possible values of s, t by looking at the footprints.

Input

The first line of the input contains integer n (3 ≤ n ≤ 1000).

The second line contains the description of the road — the string that consists of n characters. Each character will be either "." (a block without footprint), or "L" (a block with a left footprint), "R" (a block with a right footprint).

It's guaranteed that the given string contains at least one character not equal to ".". Also, the first and the last character will always be ".". It's guaranteed that a solution exists.

Output

Print two space-separated integers — the values of s and t. If there are several possible solutions you can print any of them.

Examples
input
Copy
9
..RRLL...
output
Copy
3 4
input
Copy
11
.RRRLLLLL..
output
Copy
7 5
Note

The first test sample is the one in the picture.



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <string>

using namespace std;

int arr[51];

int main() {
    int n;
    cin >> n;
    
    string s;
    cin >> s;
    
    if(s.find('R') != string::npos && s.find('L') != string::npos)
        cout << s.find('R') + 1 << ' ' << s.find('L')  << endl;
    else if(s.find('R') != string::npos) {
        int tmp = 0;
        for(int i = n - 1; i >= 0; i--)
            if(s[i] == 'R') {
                tmp = i;
                break;
            }
            
        cout << s.find('R') + 1 << ' ' << tmp + 2 << endl;
    } else {
        int tmp = 0;
        for(int i = n - 1; i >= 0; i--)
            if(s[i] == 'L') {
                tmp = i;
                break;
            }
        
        cout << tmp + 1 << ' ' << s.find('L') << endl;
    }
  
    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
9
..RRLL...

Output

x
+
cmd
3 4
Advertisements

Demonstration


Codeforces Solution-Snow Footprints-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+