python Remove the last digit of the entered number. Ex. Removing the last digit from 123456 returns 12345 code example Example: find last digit of number //C++ int last_digit = number % 10;