123456
string make_random_str(uint length) { string str; for (uint i=0;i<length;i++)str+='a'+rand()%26; return str; }