#include<cstdio>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
void test01()
{
string one("LotteWinner!");
cout<<one<<endl;
}
void test02()
{
string two(20,'#');
cout<<two<<endl;
}
void test03()
{
string one("LotteWinner!");
string three(one);
cout<<three<<endl;
}
void test04()
{
string four;
string one("LotteWinner!");
string two(20,'#');
four=one+two;
cout<<four<<endl;
}
void test05()
{
char alls[]="asdfasdfasdfasdf";
string five(alls+2,alls+6);
cout<<five<<endl;
}
void test06()
{
string one("LotteWinner!");
string six(&one[2],&one[6]);
cout<<six<<endl;
}
void test07()
{
string one("LotteWinner!");
string seven(one,2,3);
cout<<seven<<endl;
}
int main()
{
test06();
return 0;
}