Odpowiedź:
#include <iostream>
#include <string>
#include <algorithm>
int main() {
std::string word;
std::getline(std::cin, word);
for (int i = 0; i < word.length() - 1; i++) {
if (i % 2 == 0) {
std::swap(word[i], word[i + 1]);
}
}
std::cout << word;
return 0;
}
Wyjaśnienie: