#include
#include
#include
using namespace std;
template
class Print
{
public:
void operator()(const T& t)
{
cout << t << " ";
}
};
int main()
{
Print DoPrint;
vector vInt(10);
fill(vInt.begin(), vInt.begin() + 5, 1);
fill(vInt.begin() + 5, vInt.end(), 2);
for_each(vInt.begin(), vInt.end(), DoPrint);
return 0;
}