12 lines
186 B
C
12 lines
186 B
C
#include <stdio.h>
|
|
|
|
int main(void){
|
|
int ch;
|
|
while((ch = getchar()) == ' ')
|
|
continue;
|
|
while (getchar() != '\n')
|
|
continue;
|
|
printf("%c",ch);
|
|
return 0;
|
|
}
|