13 lines
141 B
C
13 lines
141 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define STRSIZE 32
|
|
|
|
int main()
|
|
{
|
|
char str[STRSIZE];
|
|
gets(str);
|
|
puts(str);
|
|
|
|
exit(0);
|
|
} |