Submission

Status:

[-SSSSSSSSS]

Subtask/Task Score:

{0/100}

Score: 0

User: scxtti3h

Problemset: เรียงสตริง

Language: cpp

Time: 0.003 second

Submitted On: 2025-12-10 19:23:22

/*
    AUTHOR : Scxtti3h
    Task   : c1_bkk67_1
    Date   : 10/12/2568
*/

#include <bits/stdc++.h>
using namespace std;

int main(){
    string s;
    int a;
    cin.tie(nullptr)->sync_with_stdio(false);
    cin >> s;
    sort(s.begin(), s.end());
    a=s.length();
    for (int i=0;i<a;i++) {
        cout << s[i];
        if (i!=a-1){
           cout << " ";
        }
    }
    cout << "\n";

    return 0;

}