๐โ๏ธBaekjoon/Python
#2869 - python ๋ฌํฝ์ด๋ ์ฌ๋ผ๊ฐ๊ณ ์ถ๋ค
A, B, V = map(int, input().split()) x = (V-B)/(A-B) if x == int(x): print(int(x)) else: print(int(x) + 1)
https://happyhyxndy.tistory.com/61