https://www.acmicpc.net/problem/3181문제 전문은 링크 참조문제가공문자열을 입력받는다첫번째 단어는 제외하고, 특정 단어들은 제외 시킨다각 단어의 첫번째 알파벳을 대문자로 출력한다.코드작성exclude_word =['i', 'pa', 'te', 'ni', 'niti', 'a', 'ali', 'nego', 'no', 'ili']words = input().split()f = words.pop(0)arr = filter(lambda x: x not in exclude_word,words)s = f[0].upper() + ''.join([i[0].upper() for i in arr])print(s)