using System;
public class Program
{
public static void Main(string[] args)
int[] A = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
int[] B = {4, 8, 8, 12, 15};
for (int i = 0; i < B.Length; i++)
for (int j = 0; j < A.Length; j++)
if (i < j)
if (i == j)
Console.WriteLine(i);
i++;
}
else
Console.WriteLine(0);
j++;