0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:45:24 +00:00
OI-codes/Luogu/CF20A/CF20A.cpp

28 lines
557 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
cin >> s;
if (s.size() == 1) {
cout << s << endl;
return 0;
}
while (s.size() && *(s.end() - 1) == '/') {
s.erase(s.end() - 1);
}
if (!s.size()) {
cout << "/" << endl;
return 0;
}
for (string::iterator it = s.begin(); it != s.end(); it++) {
if (it + 1 != s.end() && *it == '/' && *(it + 1) == '/') {
s.erase(it + 1);
it--;
}
}
cout << s << endl;
return 0;
}