(что нужно исправить пробелы или "=" или что-то ещё )
n = int(input())
a = int(input())
b = int(input())
c = int(input())
z = 0
x = 0
if a*b > n :
import math
z = n / b
print(math.ceil(z))
else:
while n > 0:
n -= b
x = x + 1
break
z = (n//(a*b))*c+x
(спасибо)
n = int(input())
a = int(input())
b = int(input())
c = int(input())
z = 0
x = 0
if a*b > n :
import math
z = n / b
print(math.ceil(z))
else:
while n > 0:
n -= b
x = x + 1
break
z = (n//(a*b))*c+x
(спасибо)