#P1299A. Anu Has a Function

    ID: 5195 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>brute forcegreedymath*1500

Anu Has a Function

No submission language available for this problem.

Description

Anu has created her own function ff: f(x,y)=(xy)yf(x, y) = (x | y) - y where | denotes the bitwise OR operation. For example, f(11,6)=(116)6=156=9f(11, 6) = (11|6) - 6 = 15 - 6 = 9. It can be proved that for any nonnegative numbers xx and yy value of f(x,y)f(x, y) is also nonnegative.

She would like to research more about this function and has created multiple problems for herself. But she isn't able to solve all of them and needs your help. Here is one of these problems.

A value of an array [a1,a2,,an][a_1, a_2, \dots, a_n] is defined as f(f(f(f(a1,a2),a3),an1),an)f(f(\dots f(f(a_1, a_2), a_3), \dots a_{n-1}), a_n) (see notes). You are given an array with not necessarily distinct elements. How should you reorder its elements so that the value of the array is maximal possible?

The first line contains a single integer nn (1n1051 \le n \le 10^5).

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (0ai1090 \le a_i \le 10^9). Elements of the array are not guaranteed to be different.

Output nn integers, the reordering of the array with maximum value. If there are multiple answers, print any.

Input

The first line contains a single integer nn (1n1051 \le n \le 10^5).

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (0ai1090 \le a_i \le 10^9). Elements of the array are not guaranteed to be different.

Output

Output nn integers, the reordering of the array with maximum value. If there are multiple answers, print any.

Samples

Sample Input 1

4
4 0 11 6

Sample Output 1

11 6 4 0

Sample Input 2

1
13

Sample Output 2

13

Note

In the first testcase, value of the array [11,6,4,0][11, 6, 4, 0] is f(f(f(11,6),4),0)=f(f(9,4),0)=f(9,0)=9f(f(f(11, 6), 4), 0) = f(f(9, 4), 0) = f(9, 0) = 9.

[11,4,0,6][11, 4, 0, 6] is also a valid answer.