mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-24 18:11:59 +00:00
parent
3cabda8654
commit
a9316b1655
12
AtCoder/ABC218/B/B.cpp
Normal file
12
AtCoder/ABC218/B/B.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user