-Code
line = input()
for i in range(1, len(line)):
s1, s2 = line[:i], line[i:]
if s1 == s1[::-1] and s2 == s2[::-1]:
print(s1, s2)
exit()
print("NO")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 27566번 Blueberry Waffle (3) | 2024.10.23 |
---|---|
[백준/파이썬] 26564번 Poker Hand (0) | 2024.10.22 |
[백준/파이썬] 13684번 Divisão da Nlogõnia (0) | 2024.10.20 |
[백준/파이썬] 22061번 Покупка велосипеда (0) | 2024.10.19 |
[백준/파이썬] 5362번 Garbled Message (0) | 2024.10.18 |