a,b,c= map(int, input().split())
cnt=0
if (c-b)%(a-b)==0:
print((c-b)//(a-b))
else:
print((c-b)//(a-b)+1)
'백준 풀이' 카테고리의 다른 글
백준 2581번 파이썬 (0) | 2022.08.25 |
---|---|
백준 1181번 파이썬 (0) | 2022.08.25 |
백준 2941 파이썬 (0) | 2022.08.25 |
백준 1316 파이썬 (0) | 2022.08.25 |
백준 10101번 파이썬 (0) | 2022.08.25 |