eolymp
bolt
Try our new interface for solving problems
Problems

Поле-чудес

published at 3/21/18, 4:02:25 pm

J

published at 3/21/24, 9:55:00 am

include <bits/stdc++.h>

using namespace std;

int main() { string word; cin >> word; unordered_set<char> unique_letters; for (char ch : word) { unique_letters.insert(ch); } cout << unique_letters.size() << endl;

return 0;

}

published at 4/15/24, 10:08:32 am

1488