p1914
吸氧 20pts
未吸氧 40pts
#include<bits/stdc++.h>
using namespace std;
int main(){
string peroid;
int n;
cin>>n>>peroid;
for(int i=0;i<peroid.length();i++){
for(int j=1;j<=n;j++){
peroid[i]++;
if(peroid[i]>'z'){
peroid[i]='a';
}
}
}cout<<peroid;
return 0;
}
菜鸟