1#include<iostream>2using namespace std;3int main()4{5 for(int i=0;i<26;i++) {6 int x;cin>>x;7 cout<<char(96+x);8 }9 10}