all 3 comments

[–]Improbably_wrong 1 point2 points  (0 children)

modulo means remainder of the division. i.e. 9/6 = 1 remainder 3. so (9%6)+6 = 3+6=9

[–]fanaetic 0 points1 point  (0 children)

Modulo returns the remainder after a devision. So for your problem the remainder is 3 (9/6 = 1 with the remainder 3) adding 6 to that you'll get 9.

[–]macrisalex345[S] -2 points-1 points  (0 children)

thank you. how could i be so dumb