#Lutece0332. Sequence of points

Sequence of points

Migrated from Lutece 332 Sequence of points

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

You are given the following points with integer coordinates on the plane: M0,A0,A1,,An1M_0, A_0, A_1, \cdots , A_{n - 1}, where nn is odd number. Now we define the following infinite sequence of points MiM_i: MiM_i is symmetric to Mi1M_{i - 1} according A(i1) mod nA_{(i-1)\rm\ mod\ n}(for every natural number ii). Here point BB is symmetric to AA according MM, if MM is the center of the line segment ABAB. Given index jj find the point MjM_j.

Input

There are multi-cases. On the first line of each case, you will be given an integer nn (1n1051\leq  n\leq  10^5), which will be odd, and jj (1j10181\leq  j \leq  10^{18}), where jj is the index of the desired point. The next line contains two space separated integers, the coordinates of M0M_0. After that nn lines follow, where the ithi_{th} line contain the space separated integer coordinates of the point Ai1A_{i - 1}. The absolute values of all input coordinates will not be greater then 10001000.

Output

For each case output the coordinates of MjM_j, space separated.

Samples

3 4
0 0
1 1
2 3
-5 3
3 1
5 5
1000 1000
-1000 1000
3 100
14 0
1995 1995

Resources

2011寒假训练(一)(Not Original)