0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 18:52:02 +00:00

B2018 打印字符

R53278673
This commit is contained in:
Baoshuo Ren 2021-07-16 11:31:05 +08:00 committed by Baoshuo Ren
parent 871ed79428
commit 2f59e33006
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

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