//----------------------------------------------------
//AUTHOR: lanyang123456
//DATE: 2014-10-21
//----------------------------------------------------
/*
string_iterator.cpp
*/
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str = "Let's begin.";
for(string::iterator iter = str.begin(); iter < str.end(); iter++)
{
cout<<*iter;
}
cout<<endl;
}