0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:45:25 +00:00
OI-codes/AtCoder/ABC218/B/B.cpp

13 lines
170 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
int main() {
int p;
while (cin >> p) {
cout << char(p + 'a' - 1);
}
cout << endl;
return 0;
}