using System;
public class Program
{
public static void Main()
int a = 10;
int b = 4;
bool c = a == b; // false
Console.WriteLine(c);
}