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