So I am trying to figure out how to divide the given amount of people into given group sizes for example: 11 people into groups of 3, and the program giving the answer 4, since the remainder should form a group also on top, as only one group can contain less than the given group size, but I cannot figure out how to do this without if-statements, and with just simply using math operators, and I am asking for guidance.
I tried something alongside asking for the amount of people and the group size and storing them in the variables called [amount] and [size], and tried to figure out how to get the remainder in there too with the use of "//" operator, but I cannot figure it out.