[Python] BOJ 17256번. 달달함이 넘쳐흘러 작성일 2020-05-22 | In Algorithm | 17256번. 달달함이 넘쳐흘러 문제 링크 https://www.acmicpc.net/problem/17256 풀이 코드 1234567# 17256번. 달달함이 넘쳐흘러 a = list(map(int, input().split())) c = list(map(int, input().split())) print(c[0]-a[2], c[1]//a[1], c[2]-a[0]) 비고