using System;
public class Program
{
public static void Main()
int[] a = {-1,1,2,0,-3,5};
int[] b = new int[6];
int j=0;
for(int i =0 ; i < a.Length; i++)
if(a[i] > 0)
b[j] = a[i];
j++;
}
if(a[i] < 0)
for(int i =0; i < b.Length ; i++)
Console.WriteLine(b[i]);