2025-09-13 20:47:03 +09:00

7 lines
115 B
Python

while True :
try :
n, s = map(int, input().split())
except :
break
print(s//(n+1))