2022-03-17 13:01:28 +00:00
|
|
|
#include <stdio.h>
|
2022-03-17 19:15:29 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#define LINE_SIZE 999
|
2022-03-17 13:01:28 +00:00
|
|
|
|
|
|
|
int main(){
|
2022-03-17 19:15:29 +00:00
|
|
|
char riadok[LINE_SIZE];
|
|
|
|
memset(riadok, 0,LINE_SIZE);
|
|
|
|
char* r = fgets(riadok,LINE_SIZE,stdin);
|
|
|
|
if(r == NULL){
|
|
|
|
exit(0);
|
|
|
|
}
|
2022-03-17 13:01:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|