#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
 
int main() {
int z = 0;
std::vector<std::string> names = {"john", "bobby", "dear", "test1", "catherine", "nomi", "shinta", "martin", "abe", "may", "zeno", "zack", "angeal", "gabby"};
 
sort(names.begin(), names.end() );
 
for(auto name : names){
    cout << name << endl;
}
        return 0;
 
}