#include #include using namespace std; int main(){ string S; cin >> S; int i, j; cin >> i >> j; swap(S[i], S[j]); cout << S << endl; }