using System;
public class Program
{
public static void Main()
bool output;
int number =5;
output = number != 3;
Console.WriteLine(output);
}