#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,W,H; cin >> N >> W >> H; string s; cin >> s; s += 'l'; int streak = 0,pos = 0; vector A(W); for(auto c : s){ if(c == 'l') A.at(pos) = streak,pos++,streak = 0; else streak++; } for(int i=0; i= H) cout << "o"; else cout << "x"; } cout << "\n"; } }