300524: CF100E. Lamps in a Line

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

E. Lamps in a Linetime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

There are n lamps in a line. The lamps are numbered 1 to n from left to right. There are also n keys. When key number i is pressed, all lamps number x such that i|x change their state.

For two integer numbers a and b, we say a|b if and only if there exists an integer c such that a × c = b.

Amirali likes to play with the keys. He randomly pressed k keys and wants to know the final state of the lamps. Help him by writing a Pike piece of code to solve this task.

Input

The first line of input contains a single integer n, the number of lamps (1 ≤ n ≤ 105).

The following line contains n words. The i-th word describes the initial state of lamp number i (see samples for details).

The following line contains a single integer k (1 ≤ k ≤ 104), the number of times a key is pressed. Then in the next line come k integers in range [1, n] which are the numbers of the pressed keys.

Output

Write n words to output. Describe the final state of the lamps. See samples for more details.

ExamplesInput
2
off off
2
1 2
Output
on off 
Input
3
off off on
6
1 1 1 1 2 2
Output
off off on 

Input

加入题单

算法标签: