#include using namespace std; int main() { char str[80]; while (gets(str) != NULL) { puts(str); putchar('\n'); } }