@Eeap 2021. 5. 5. 17:03
반응형

import math

a,b,c = map(int,input().split())
if b < c:
temp = c-b

print(math.floor(a/temp + 1))

else:
print(-1)

반응형