using System;
public class Program
{
public static void Main()
int integer = 1;
float floatingPoint = 1f;
if (integer == floatingPoint)
Console.Write("I have compared an int to a float.");
}