0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 03:11:58 +00:00
Baoshuo Ren 2021-09-12 07:54:03 +08:00 committed by Baoshuo Ren
parent 3cabda8654
commit a9316b1655
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

12
AtCoder/ABC218/B/B.cpp Normal file
View File

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