10798: ABC146 - B - ROT N
[Creator : ]
Description
We have a string $S$ consisting of uppercase English letters. Additionally, an integer $N$ will be given.
Shift each character of $S$ by $N$ in alphabetical order (see below), and print the resulting string.
We 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
).
Input
Input is given from Standard Input in the following format:
```
$N$
$S$
```
```
$N$
$S$
```
Output
Print the string resulting from shifting each character of $S$ by $N$ in alphabetical order.
Constraints
- $0 \leq N \leq 26$
- $1 \leq |S| \leq 10^4$
- $S$ consists of uppercase English letters.
- $1 \leq |S| \leq 10^4$
- $S$ consists of uppercase English letters.
Sample 1 Input
2
ABCXYZ
Sample 1 Output
CDEZAB
Note that A
follows Z
.
Sample 2 Input
0
ABCXYZ
Sample 2 Output
ABCXYZ
Sample 3 Input
13
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Sample 3 Output
NOPQRSTUVWXYZABCDEFGHIJKLM