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