{"raw_statement":[{"iden":"problem statement","content":"You are given a string $S$ consisting of lowercase English letters.\nSwap the $a$\\-th and $b$\\-th characters from the beginning of $S$ and print the resulting string."},{"iden":"constraints","content":"*   $S$ is a string consisting of lowercase English letters.\n*   The length of $S$, $|S|$, satisfies $2 \\leq |S| \\leq 10$.\n*   $1 \\leq a < b \\leq |S|$\n*   $a$ and $b$ are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$S$\n$a$ $b$"},{"iden":"sample input 1","content":"chokudai\n3 5"},{"iden":"sample output 1","content":"chukodai\n\nAfter swapping the $3$\\-rd character `o` and $5$\\-th character `u` of `chokudai`, we have `chukodai`."},{"iden":"sample input 2","content":"aa\n1 2"},{"iden":"sample output 2","content":"aa\n\nIn this sample, after swapping the $1$\\-st and $2$\\-nd characters of $S$, we have the same string as $S$."},{"iden":"sample input 3","content":"aaaabbbb\n1 8"},{"iden":"sample output 3","content":"baaabbba"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}