Algorithm


A. Interview with Oleg
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarp has interviewed Oleg and has written the interview down without punctuation marks and spaces to save time. Thus, the interview is now a string s consisting of n lowercase English letters.

There is a filler word ogo in Oleg's speech. All words that can be obtained from ogo by adding go several times to the end of it are also considered to be fillers. For example, the words ogoogogoogogogo are fillers, but the words googogogogogog and oggo are not fillers.

The fillers have maximal size, for example, for ogogoo speech we can't consider ogo a filler and goo as a normal phrase. We should consider ogogo as a filler here.

To print the interview, Polycarp has to replace each of the fillers with three asterisks. Note that a filler word is replaced with exactly three asterisks regardless of its length.

Polycarp has dealt with this problem in no time. Can you do the same? The clock is ticking!

Input

The first line contains a positive integer n (1 ≤ n ≤ 100) — the length of the interview.

The second line contains the string s of length n, consisting of lowercase English letters.

Output

Print the interview text after the replacement of each of the fillers with "***". It is allowed for the substring "***" to have several consecutive occurences.

Examples
input
Copy
7
aogogob
output
Copy
a***b
input
Copy
13
ogogmgogogogo
output
Copy
***gmg***
input
Copy
9
ogoogoogo
output
Copy
*********
Note

The first sample contains one filler word ogogo, so the interview for printing is "a***b".

The second sample contains two fillers ogo and ogogogo. Thus, the interview is transformed to "***gmg***".

 



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <string>

using namespace std;

int main() {
    int n;
    cin >> n;
    string s;
    cin >> s;
    
    for(int i = 0, len = s.length() - 2; i < len; i++) {
        if(s[i] == 'o' && s[i+1] == 'g' && s[i+2] == 'o') {
            int j = i + 3;
            while(s[j] == 'g' && s[j+1] == 'o')
                j += 2;
            
            s = s.substr(0, i) + "***" + s.substr(j);
            len = s.length() - 2;
        }
    }
    
    cout << s << endl;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
7
aogogob

Output

x
+
cmd
a***b
Advertisements

Demonstration


Codeforces Solution-Interview with Oleg-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+