Points

Limits 1s, 512 MB

You will be given two-dimensional coordinates (x,y)(x, y) of NN points. Your task is to identify KK points from them that are lying in a straight line (This line should contain exactly KK points). It is guaranteed that all points are unique and there is exactly one such line exists in which exactly KK points lie.

Input

The first line of the input contains two integers NN and KK.

The next NN lines contain the description of NN points. The ii th line contains two integers xix_i and yiy_i that denote the coordinates of the ii th point.

Constraints:

Output

Print the coordinates of the KK points one line each according to the input order.

Sample

InputOutput
4 3
1 1
1 2
2 2
3 3
1 1
2 2
3 3