s = list(input()) i,j = map(int, input().split()) s[i],s[j] = s[j],s[i] print(''.join(s))