The day after a giant party everybody wants to know a couple of things - who was at the party and how many people were there? Since parties are usually pretty big, nobody actually knows the correct number of people who were there. Your friend Krešo was on a party last Saturday and he knows how many people there were per .
While reading newspaper articles about that party, you have written down numbers, specifying how many people were present at the party according to each of the articles. You believe Krešo's information and you'd like to know how much each of the articles was wrong.
Input Specification
The first line of input contains two positive integers, , the number of people per , and , the area of the room the party was held in.
The second line of input contains positive integers less than , the number of people present at the party according to each of the articles.
Output Specification
The first and only line of output must contain numbers, the difference between the number of people written in an article and Krešo's (correct) number.
Sample Input 1
1 10
10 10 10 10 10
Sample Output 1
0 0 0 0 0
Sample Input 2
5 20
99 101 1000 0 97
Sample Output 2
-1 1 900 -100 -3
Comments