Arithmetic Square, everyone's favourite problem. Welcome to the better problem, Arithmetic Line!
You are given integers, which are guaranteed to form an arithmetic sequence. However, they appear scrambled! Can you recreate the arithmetic sequence given the integers?
Recall that an arithmetic sequence of length is a sequence of integers of the form
for integer values of and . For the purposes of this problem, is a non-negative integer.
Input Specification
The first line will contain the integer , the number of integers.
The second line will contain integers, , the integers you are given. It is guaranteed that these integers form an arithmetic sequence in some permutation of them.
Output Specification
Output the recreated arithmetic sequence.
Sample Input
3
7 3 5
Sample Output
3 5 7
Explanation For Sample
The arithmetic sequence of integers that is built has and .
Comments