class Extenstion { static String capitalize(String s) { return s[0].toUpperCase() + s.substring(1); } }