2025-05-27 19:03:28 +09:00

9 lines
122 B
C

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