
def howmanyint():
	sum = 0
	i = 0
	while sum <= 100:
		i += 1
		sum = sum + i
	return i

print(howmanyint())