So I'm trying to make a game which takes your level, multiplies it by 5, divides the product by 25, then multiplies that by 100, to get your attack variable. The code for default looks like below;
level = 1
atk = ((level * 5) / 25) * 100
Now, if following basic math, that would make ((1*5)/25)*100). That means the answer should be 20. Python, however, reports 0. What am I doing wrong?