BC27 整数的个位

思路:

step1:输入整数;取最后一位即可;

代码如下:

n = input()
print(n[-1])