mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-09 02:38:49 +00:00
13 lines
170 B
C++
13 lines
170 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int p;
|
|
while (cin >> p) {
|
|
cout << char(p + 'a' - 1);
|
|
}
|
|
cout << endl;
|
|
return 0;
|
|
}
|