1093 字符串A+B (20 分)
#include
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
string s;
bitset<128> h;
while (getline(cin, s)) {
for (char c : s) {
if (not h[c]) {
h[c] = true;
cout << c;
}
}
}
return 0;
}
共有 0 条评论