How to separate the digits of a number and add them, for example: 123 - > 1 + 2 + 3 = 6
How to do this, however, do this using arithmetic operators. I saw a case where it was separated using operations with "//" and "%", but I did not quite understand how it was done.