#include int main() { using namespace std; char str[80]; while (fgets(str, 80, stdin) != NULL) { fputs(str, stdout); } }