[Python] Easier Python solution[Python] Easier Python solution

🎳

A Billion Bowling Pins

Week 5, 2026

n = int(input()) a = 0 b = 1 while a <= n : a += b b += 1 print(b-2)