#include <iostream>
#include <string>
using namespace std;

int main() {
    string str;
    cin >> str;
    int z = 0, o = 0, j = 0;
    for (int i = 0; i < str.size(); i++) {
        if (str[i] == 'Z')     z++;
        if (str[i] == 'O')     o++;
        if (str[i] == 'J')     j++;
    }
    while (z > 0 || o > 0 || j > 0) {
        if (z > 0) {
            cout << 'Z';
            z--;
        }
        if (o > 0) {
            cout << 'O';
            o--;
        }
        if (j > 0) {
            cout << 'J';
            j--;
        }
    }
    return 0;
}
// 64 位输出请用 printf("%lld")