9 lines
122 B
C
9 lines
122 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
char s;
|
|
while(scanf("%c",&s)!= EOF){
|
|
printf("%c",s);
|
|
}
|
|
return 0;
|
|
} |