package solutions
import (
"strings"
)
func ToLower(s string) string {
s = strings.ToLower(s)
return s
}