Beakjoon&프로그래머스/파이썬
[백준/파이썬] 7489번 Shares
현장
2022. 7. 1. 14:53
-Code
while 1:
try:
n, s = map(int, input().split())
x = s // (n + 1)
print(x)
except EOFError:
break