1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <conio.h> main() { char str[100]; gets(str); puts(str); return getch(); }