Jaden Smith Capitalization

Create a Python function to capitalize every word in a string, similar to Jaden Smith's unique Twitter style.

Jaden Smith, known for his distinctive Twitter style where every word in a tweet starts with a capital letter. Your task is to create a Python function that takes a string argument and transforms it to match this style. ### Parameters - `s` (str): The string that needs to be converted to Jaden Smith's capitalization style. ### Return Value - Returns a string where the first character of each word is capitalized. ### Examples ```python solution("How can mirrors be real if our eyes aren't real") # returns: "How Can Mirrors Be Real If Our Eyes Aren't Real" solution("A thousand miles begins with a single step") # returns: "A Thousand Miles Begins With A Single Step" ```