728x90
import sys
string = sys.stdin.readline().split('-')
res = ""
for char in string:
res += char[0]
print(res)
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 1934 파이썬(python) : 최소공배수 (0) | 2022.09.28 |
---|---|
[백준] 1037 파이썬(python) : 약수 (0) | 2022.09.27 |
[백준] 3273 파이썬(python) : 두 수의 합 (0) | 2022.09.25 |
[백준] 2003 파이썬(python) : 수들의 합 2 (0) | 2022.09.24 |
[백준] 1940 파이썬(python) : 주몽 (0) | 2022.09.22 |