7 lines
97 B
C
7 lines
97 B
C
#include <stdio.h>
|
|
int main(){
|
|
char c;
|
|
c = getchar();
|
|
printf("%d",c);
|
|
return 0;
|
|
} |