Submission

Status:

[PPPPPPPPPP]

Subtask/Task Score:

{100/100}

Score: 100

User: PEPSEALSEA

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

Language: cpp

Time: 0.002 second

Submitted On: 2025-10-13 10:48:33

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

int main() {
    
    string word;

    cin >> word;
    
    set<int> newSet(begin(word), end(word));

    for (char element : newSet) {
        cout << element << " ";
    }
    cout << endl;

    return 0;
}