// copy3.cpp:   Read whitespace with >>
#include <iostream.h>

main()
{
    char c;

    // Don't skip whitespace
    cin.unsetf(ios::skipws);

    while (cin >> c)
        cout << c;
    return 0;
}

