static string Technology(string post)

{
    if (post.Contains("Twitter") || post.Contains("elon"))
    {
        return "loser";
    }
    else
    {
        return "cool";
    }
}