using System;
public class Program
{
public static void Main()
var orientation = new int[] { -1, 1 };
var rand = new Random();
for(int i = 0; i< 50; i++)
Console.WriteLine(orientation[rand.Next(0, 2)]);
}