Hey, so I'm doing a thing where I have a number (let's take 256 as an example for ease of use), and I want to halve that number X amount of times, with X ideally being queried with a basic ?{halve how many times|0} prompt. Meaning if I entered 3, for example, the performed calculation would be [[(((256/2)/2)/2)]] with a result of 32. Is that even possible without API functionality? I have no idea how to start approaching it, as I can't find a way to perform an operation like that a variable amount of times while taking the results from previous iterations into account.