class Solution { public String toLowerCase(String s) { String b=""; b= s.toLowerCase(); return b; } }