using System;
public class Program
{
public static void Main()
//Enrique Samaniego García
int x, y;
y= 10;
Console.WriteLine("Hi,Can you give me a number");
x = int.Parse(Console.ReadLine());
if (x > y)
Console.WriteLine(x + " Is higher than" + y);
}
else if(y > x)
Console.WriteLine( y + " is higher than " + x);
if(x == y)
Console.WriteLine("The numbers are equal");