public static void Main()
int input = int.Parse(Console.ReadLine());
string[] phrases = {"Excellent product.", "Such a great product.", "I always use that product.", "Best product of its category.", "Exceptional product.", "I can’t live without this product."};
string[] events = {"Now I feel good.", "I have succeeded with this product.", "Makes miracles. I am happy of the results!", "I cannot believe but now I feel awesome.", "Try it yourself, I am very satisfied.", "I feel great!"};
string[] authors = {"Diana", "Petya", "Stella", "Elena", "Katya", "Iva", "Annie", "Eva"};
string[] towns = {"Burgas", "Sofia", "Plovdiv", "Varna", "Ruse"};
Random rndObject = new Random();
for(int i = 0; i < input; i++)
int phraseIndex = rndObject.Next(0, phrases.Length);
int eventsIndex = rndObject.Next(0, events.Length);
int authorsIndex = rndObject.Next(0, authors.Length);
int townsIndex = rndObject.Next(0, towns.Length);
Console.WriteLine("{0} {1} {2} - {3}", phrases[phraseIndex], events[eventsIndex], authors[authorsIndex], towns[townsIndex]);