数的分离
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
定义一函数digit(n,k)分离出整数n从右边数第k个数字。如digit(2076,1)等于6,而digit(2076,5)等于0。 main函数输入n和k,调用digit(n,k)输出答案,n在long long范围内。
输入 一行两个整数,分别表示n和k,之间用一个空格隔开。
输出 一行一个整数,表示整数n从右边数第k个数字。
样例 输入
31859 3
输出
8