✏️ 문제https://www.acmicpc.net/problem/1357 ✏️ 풀이방법1. 역순으로 x,y 를 더한 result를 다시 역순으로 출력한다. 2. 다만 100을 뒤집어 출력하면 001이 아닌 1로 출력되어야해서 반복문으로 최종결과의 문자열의 마지막이 0인경우 지워줬다. 📌 코드a,b = map(str,input().split())a = a[::-1]b = b[::-1]result =str(int(a)+int(b))while(result.endswith('0') == True): result = result[:-1] if result.endswith('0') == False: breakprint(result[::-1]) 📌 결과123 100 #입력22..