#include <iostream>
int main()
{
// differences starting at lowercase 'a' (ASCII - 97)
int charDiffs[] { -25, 4, 11, 11, 14, -53, -65, 22, 14, 17, 11, 3, -64 };
for (int diff : charDiffs) {
std::cout << (char) (97 + diff);
}
return 0;
}