Ответ:
Объяснение:
l = list(map(int, input().split()))
a = l[0]
b = l[1]
c = l[2]
n = 1
while b * n <= c - a:
n += 1
print(n - 1)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
l = list(map(int, input().split()))
a = l[0]
b = l[1]
c = l[2]
n = 1
while b * n <= c - a:
n += 1
print(n - 1)