#include #include #include #include #include int main(void) { char str[200]=""; int cng1,cng2; scanf("%s",str); scanf("%d %d",&cng1,&cng2); char tmp=str[cng1]; str[cng1]=str[cng2]; str[cng2]=tmp; printf("%s",str); }