[알고리즘] 백준 13235 - 팰린드롬 (C++) [문제 링크] : https://www.acmicpc.net/problem/13235#include #include using namespace std;string A, B;int main(){ cin >> A; B = A; reverse(B.begin(), B.end()); if(A == B){ cout 알고리즘 2025.04.05