A, B, C = list(map(int, input().split()))
BREAK_EVEN_POINT = 0
if(C <= B):
BREAK_EVEN_POINT = -1
else:
BREAK_EVEN_POINT = A // (C - B) + 1
print(BREAK_EVEN_POINT)
'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글
백준 1085번(python) (0) | 2019.07.05 |
---|---|
백준 2869번(python) (0) | 2019.07.04 |
백준 3052번(python) (0) | 2019.07.03 |
백준 10818번(python) (0) | 2019.07.03 |
백준 11729번(python) (0) | 2019.06.28 |