10 lines
78 B
C
10 lines
78 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
char buf[76];
|
|
|
|
gets(buf);
|
|
return 0;
|
|
}
|