#include int main(){ int i,j; char s[11],t; scanf("%s %d %d",s,&i,&j); t=s[i];s[i]=s[j];s[j]=t; printf("%s",s); return 0; }