#include<stdio.h> void print(char str[]){ printf("%s",str); } int main(){ char str[101]; fgets(str,sizeof(str),stdin); print(str); return 0; }