백준

[11654] 아스키 코드

Jcoder 2018. 7. 14. 12:58


#include <stdio.h>
int main()
{
char abc;
scanf("%s", &abc);
printf("%d\n", abc);
return 0;
}