With my code, I want to get the last two digits of an integer. But when I make x a positive number, it will take the first x digits, if it is a negative number, it will remo
to get the last 2 digits of an integer.
a = int(input()) print(a % 100)