지나가던 개발자
[Python] 백준 1357번(뒤집힌 덧셈) 문제 풀이 본문
def rev(x):
return int(x[::-1])
x, y = input().split(" ")
print(rev(str(rev(x)+rev(y))))
'PS > Python' 카테고리의 다른 글
[Python] 백준 10769번(행복한지 슬픈지) 문제 풀이 (0) | 2022.10.21 |
---|---|
[Python] 백준 11816번(8진수, 10진수, 16진수) 문제 풀이 (0) | 2022.10.21 |
[Python] 백준 8611번(팰린드롬 숫자) 문제 풀이 (0) | 2022.10.20 |
[Python] 백준 10815번(숫자 카드) 문제 풀이 (0) | 2022.10.19 |
[Python] 백준 2693번(N번째 큰 수) 문제 풀이 (0) | 2022.10.19 |
Comments