mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
28 lines
557 B
C++
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;
|
|
}
|