# -*- coding: utf8 -*-
import sys
for s in sys.stdin: # 從標準輸入,讀入一行
s = s.strip() # 去除換行符號及空白
try:
n = s.split(" ")
num = int(n[0]) #第一個數字
total_1 = int(n[1]) #要求的大小
total_2 = 0 #目前的總值
day = 0 #當前天數
b = 0 # 第一個數+1
while total_2 < total_1:
day = day + 1
num = num + b
total_2 = total_2 + num
b = 1
print(day)
except EOFError:
break