#include <stdio.h>
void main()
{
char s[30];
printf(
"Put string :"
);
gets(s);
"You put %s"
,s);
getchar();
}