iterator begin() noexcept; const_iterator begin() const noexcept;
iterator end() noexcept; const_iterator end() const noexcept;
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1("hello");
cout << s1 << endl;
string::iterator it = s1.end() - 1;
cout << *it << endl;
it = s1.begin();
cout << *it << endl;
return 0;
}