728x90
반응형

단순 문자열 문제이다.

for _ in range(int(input())):
    s = input().lower()
    print("Yes" if s == s[::-1] else "No")
728x90
반응형

+ Recent posts