본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 27627번 Splitology

by 현장 2024. 10. 21.

-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")