0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 17:05:25 +00:00
OI-codes/Luogu/B2017/B2017.cpp

11 lines
131 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
cin >> c;
cout << int(c) << endl;
return 0;
}