본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#269 백준 파이썬 [2902] KMP는 왜 KMP일까?

https://www.acmicpc.net/problem/2902

 

 

Python Code

string = list(input().split('-'))
for i in string:
    print(i[0], end= '')