using System;
public class Program
{
public static void Main()
int[] a ={15, 8, 13, 4, 26, 1, 5, 33, 19, 11};
for (int i = 0; i < 10; i++)
if (a[i] > 10) Console.Write(a[i] + " ");
}