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