[Python] BOJ 14918번. 더하기 작성일 2020-05-22 | In Algorithm | 14918번. 더하기 문제 링크 https://www.acmicpc.net/problem/14918 풀이 코드 12345# 14918번. 더하기 a, b = map(int, input().split()) print(a+b) 비고