Given a string s, return the string with all uppercase English letters converted to lowercase.
Input: A single string s.
Output: The string with all characters converted to lowercase.
Input: Hello
Output: hello
Explanation: H→h, rest unchanged.Input: LOVELY
Output: lovely
Explanation: All uppercase → all lowercase.Input: already
Output: already
Explanation: No uppercase chars; string unchanged.0 <= s.length <= 100s consists of printable ASCII characters