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