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