using System;
public class Program
{
public static void Main()
object x = 3;
int y = 3;
object z = y;
Console.WriteLine(z == x);
}