oi-learn/luogu/B2017.cc

8 lines
113 B
C++

#include <bits/stdc++.h>
int main() {
char a;
scanf("%c", &a);
printf("%u\n", (unsigned)a);
return 0;
}