Мой код прекрасно работает в VS Code, но показывает RunTimeError в онлайн-среде IDE.
testcase = int(input())
while testcase:
s = int(input()) #money have
a = int(input()) #min offer
b = int(input()) #free
c = int(input()) #cost
total = s//c + ((s//c)//a)*b
print(total)
testcase -= 1`