I'm doing some practice tasks for school and theres one simple one to make a program that returns the last two digits of any integer over 9. I found the solution online and it uses 'abs()' which I haven't seen before. somehow it made 10 % 100 = 10 which I don't get when, to my understanding, abs(10) is literally just 10.
a = int(input())
print(abs(a) % 100)