class Solution {
public:
ListNode* getKthFromEnd(ListNode* head, int k) {
ListNode* cur=head;
for(int i=0;i<k;i++) {
cur=cur->next;
}
while(cur) {
head=head->next;
cur=cur->next;
}
return head;
}
};