{"raw_statement":[{"iden":"problem statement","content":"We have a string $S$ consisting of uppercase English letters. Additionally, an integer $N$ will be given.\nShift each character of $S$ by $N$ in alphabetical order (see below), and print the resulting string.\nWe assume that `A` follows `Z`. For example, shifting `A` by $2$ results in `C` (`A` $\\to$ `B` $\\to$ `C`), and shifting `Y` by $3$ results in `B` (`Y` $\\to$ `Z` $\\to$ `A` $\\to$ `B`)."},{"iden":"constraints","content":"*   $0 \\leq N \\leq 26$\n*   $1 \\leq |S| \\leq 10^4$\n*   $S$ consists of uppercase English letters."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$S$"},{"iden":"sample input 1","content":"2\nABCXYZ"},{"iden":"sample output 1","content":"CDEZAB\n\nNote that `A` follows `Z`."},{"iden":"sample input 2","content":"0\nABCXYZ"},{"iden":"sample output 2","content":"ABCXYZ"},{"iden":"sample input 3","content":"13\nABCDEFGHIJKLMNOPQRSTUVWXYZ"},{"iden":"sample output 3","content":"NOPQRSTUVWXYZABCDEFGHIJKLM"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}