← Back to List
3733번: Shares ↗
Solutions
Python 3
114 B | 114 chars
while 1: try: a, b = map(int, input().split()) print(b // (a + 1)) except: break