#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string s; int i, j; cin >> s >> i >> j; swap(s[i], s[j]); cout << s << '\n'; return 0; }