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