1: To lower case

Given a string, convert it to a lower case string

 

Example 1

Input:  HeLLo

Output: hello

Example 2

Input:  HELLO

Output: hello
Difficulty:Easy
Topic:String
Problem #:1