| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan. 
Сложность Альфа
 
 
 nth Digit of a NumberYou will be given a number (num), find nth digit from the right of the number.
 Input specification  You will be given the two integers num and n where 0 ≤ num < 4x109
and 1 ≤ n ≤ 10
 Output specification  Show one digit number which is nth digit of the given number.
 
 
| Sample Input I 123456 4
 
 | Sample Input II 6543210 2
 
 |  
| Sample Output I 3
 | Sample Output II 1
 |  Для отправки решений необходимо выполнить вход.
 
 
 |