class Solution:
def FindKthToTail(self, head, k):
# write code here
b = head
a = k #标尺长度
count = 0 #链表长度
while(head != None):
head = head.next
count +=1
if a < 1:
b = b.next
a -=1
if count < k:
return None
return b