We're giving away nice huge bags containing number tiles! A bag we want to present to you contains n tiles. Each of them has a single number written on it — either 1 or 2

.

However, there is one condition you must fulfill in order to receive the prize. You will need to put all the tiles from the bag in a sequence, in any order you wish. We will then compute the sums of all prefixes in the sequence, and then count how many of these sums are prime numbers. If you want to keep the prize, you will need to maximize the number of primes you get.

Can you win the prize? Hurry up, the bags are waiting!

Input

The first line of the input contains a single integer n

(1≤n≤200000) — the number of number tiles in the bag. The following line contains n space-separated integers a1,a2,…,an (ai∈{1,2}

) — the values written on the tiles.

Output

Output a permutation b1,b2,…,bn

of the input sequence (a1,a2,…,an)

maximizing the number of the prefix sums being prime numbers. If there are multiple optimal permutations, output any.

Examples

Input

Copy

5
1 2 1 2 1

Output

Copy

1 1 1 2 2

Input

Copy

9
1 1 2 1 1 1 2 1 1

Output

Copy

1 1 1 2 1 1 1 2 1

Note

The first solution produces the prefix sums 1,2,3,5,7

(four primes constructed), while the prefix sums in the second solution are 1,2,3,5,6,7,8,10,11

(five primes). Primes are marked bold and blue. In each of these cases, the number of produced primes is maximum possible.

1.特判  全是1和全是2,直接输出

2.其余情况就先输出2 1

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
typedef long long ll;
#include<string>
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        int a=0,b=0;//a:1,b:2
        for(int i=1;i<=n;i++)
        {
            int x;
            scanf("%d",&x);
            if(x==1) a++;
            else b++;
        }
        if(a==n)
        {
            printf("1");
            for(int i=2;i<=n;i++) printf(" 1");
            printf("\n");
            continue;
        }
        if(b==n)
        {
            printf("2");
            for(int i=2;i<=n;i++) printf(" 2");
            printf("\n");
            continue;
        }
        printf("2 1");
        a--;b--;
        for(int i=1;i<=b;i++) printf(" 2");
        for(int i=1;i<=a;i++) printf(" 1");
        printf("\n");
    }
}

然后优先输出2,然后就全输出1