#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; void solve() { int a, b; string s; cin >> s >> a >> b; swap(s[a], s[b]); cout << s << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); solve(); getchar(); }