using System;
public class Program
{
public static void Main()
int x ;
Console.WriteLine("please enter x as a number");
x = int.Parse(Console.ReadLine());
if(x%2==0 || x> 9 && x<100)
Console.WriteLine("x=" + x*x);
}
else
Console.WriteLine("ERROR");