Files
sibsutis/proglabs/lab7/17.c
T
Павел Родионов 2fca7b75f5 1
2025-11-13 18:21:23 +07:00

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;
}