#include #include #include #include #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i)) typedef long long ll; using namespace std; ll gcd(ll a, ll b) { while (a) { b %= a; swap(a, b); } return b; } const int limit = 10000; string solve0(ll z) { return z == 0 ? "ccW" : ""; } string solve1(ll x, ll z, char c) { assert (x > 0); if (z % x == 0) { int a = z / x; if (2*a-1 <= limit) { return string(a, c) + string(a-1, 'C'); } } return ""; } string solve2(ll x, ll y, ll z) { assert (x > 0); assert (y > 0); for (ll i = -limit/2; i <= limit/2; ++ i) { ll b = i; ll a = (z - y*b) / x; if (a*x + y*b == z) { deque s; if (a > 0) { s.push_back('c'); -- a; } else if (b > 0) { s.push_back('w'); -- b; } else { s.push_back('c'); s.push_back('c'); s.push_back('W'); } if (s.size() + 2*abs(a) + 2*abs(b) <= limit) { repeat (i, abs(a)) { s.push_front('c'); s.push_back(a > 0 ? 'C' : 'W'); } repeat (i, abs(b)) { s.push_front('w'); s.push_back(b > 0 ? 'C' : 'W'); } return string(s.begin(), s.end()); } } } return ""; } int main() { int x, y, z; cin >> x >> y >> z; string ans; if (ans.empty()) ans = solve0(z); if (ans.empty()) if (x != 0) ans = solve1(x, z, 'c'); if (ans.empty()) if (y != 0) ans = solve1(y, z, 'w'); if (ans.empty()) { int d = gcd(x, y); if (x != 0 and y != 0 and z % d == 0) ans = solve2(x / d, y / d, z / d); } if (ans.empty()) ans = "mourennaihasimasenn"; cout << ans << endl; return 0; }