def sort_String(str) : 
    str = ''.join(sorted(str)) 
    return (str)