#include <conio.h>

int main(void)
{

char buffer[83];

char *t;

t = cgets(buffer);

cprintf("%s",t);

getch();

return 0;
}