Description Given a positive integer , you have to find the number of ways you can express as sum of consecutive integers. You have to use at least two integers. For example, has three solutions, . একটা ধনাত্মক সংখ্যা দেয়া আছে, তোমাকে বের করতে হবে কে কত উপায়ে একাধিক ক্রমিক সংখ্যার যোগফল আকারে লেখা যায়। যেমন, কে তিন উপায়ে লেখা যায়, . Problem Link আমার সমাধান ধরে নেই \[ \begin{eqnarray*} &&a + (a+1) + (a+2) + \cdots + b = n\ &\Rightarrow& \sum_{k = a}^{b} k = n\ &\Rightarrow& \sum_{k = 1}^{b} k - \sum_{k = 1}^{a-1} k = n\ &\Rightarrow& \frac{b(b+1)}{2} - \frac{(a-1)(a-1+1)}{2} = n\ &\Rightarrow& b^2 + b - (a^2-a) = 2n\ &\Rightarrow& b...