Write a Python program that asks the user to enter an integer num
and then extracts the last digit of the number. Display the result on the screen as the example bellow.
Hint: The last digit of a number can be extracted by taking the modulus (%)
of the number with 10