#include <iostream>
using namespace std;
string encryptTrithemius(string message) {
string result = "";
char encrypted;
int k = 0;
for(char letter : message) {
encrypted = letter + k;
if(encrypted > 'z') {
encrypted = encrypted - 'z' + 'a' - 1;
}
result += encrypted;
k += 1;
k %= 26;
}
return result;
}
int main() {
string message = "computerscience";
string encrypted = encryptTrithemius(message);
cout << encrypted << endl;
return 0;
}