def word_u(word):
    """ Method makes the first letter of the given string as capital. """

    return word[0].upper() + word[1:]