#include int main(void){ char s[10],t; int i,j; scanf("%s",s); scanf("%d%d",&i,&j); t = s[i]; s[i] = s[j]; s[j] = t; printf("%s\n",s); }