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