Hints:
EECS (Elephant EnCryption System) is an encryption method that allows elephants to communicate using ciphertext without letting other animals understand the content.
The rules of EECS are as follows:
s
by k
positions in the alphabetical order. For example, As an elephant, it’s essential to learn EECS. Now, given a word s
of length 5 and a shift distance k
, output the encrypted string after applying the EECS.
You can try solving the problem without needing to know the exact ASCII values of the letters.
The first line contains a single integer k
.
1 ≤ k
≤ 26
The second line contains a single string s
.
It is guaranteed that all characters in s
are lowercase letters and the length of the string is 5.
Output the encrypted string.
Note that you do NOT need to print '\n' at the end of the output.