Task Description
給定一組長度為 n 的正整數陣列 A,
將元素值為0的放在 A 的尾端,剩餘的元素按照原本的相對順序排列,
最後印出 A 的所有元素值。
Input Format
第一列輸入為 n,第二列輸入為 A 中的 n 個元素值。
Note: 0 < n ≤ 100、 -100 ≤ A[i] ≤ 100
Output Format
將元素值為0的放在尾端,剩餘的元素按照原本的相對順序排列。
元素之間空一格,最後一元素不空格
Sample Input
3
5 0 9
Sample Output
5 9 0
Sample Input
5
0 3 0 1 8
Sample Output
3 1 8 0 0