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