Write a Python program that asks the user to enter an integer num
and then extracts the second last digit of the number. Display the result on the screen as the example bellow.
Hint:
To get the second last digit, first, you need to remove the last digit of a number.
To remove the last digit of a number, you can use integer division (//)
by 10.
Then, take the modulus (%)
of the result with 10 to extract the second last digit.