전체 글

전체 글

    1712

    import math a,b,c = map(int,input().split()) if b < c: temp = c-b print(math.floor(a/temp + 1))else: print(-1)