MapleStory Finger Point Cute Line Smiley Blinking Hello Kitty Angel MapleStory Finger Point

๐Ÿƒ‍โ™‚๏ธBaekjoon/Python

หšโ‚Šโœฉโ€งโ‚Š #2869 - python ๋‹ฌํŒฝ์ด๋Š” ์˜ฌ๋ผ๊ฐ€๊ณ  ์‹ถ๋‹ค หšโ‚Šโœฉโ€งโ‚Š

HYEJU01 2024. 5. 17. 16:48
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