aboutsummaryrefslogtreecommitdiff
path: root/codeforces/QueueAtTheSchool/main.cpp
blob: 2503f266aadfcaa08ec84f7b873db204e1f4206b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include<bits/stdc++.h>

using namespace std;

int main () {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
  int n, t;
  cin >> n >> t;
  string s;
  cin >> s;
  string res;
  for(int j = 0; j < t; j++) {
    s = regex_replace(s, regex("BG"), "GB");
  }
  cout << s << endl;
}