#include<bits/stdc++.h> using namespace std; int main() { int n; string s; cin >> n >> s; int x = n % 26; for(int i = 0;i < s.size();i++){ if(char(s[i] + x) > 'z'){ cout << char(s[i] + x - 26); }else{ cout << char(s[i] + x); } } return 0; }