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