using System;
public class Program
{
public static void Main()
//change this number to test
int exampleVariable = 30;
if (exampleVariable > 40)
Console.WriteLine("Over 40");
}
else
Console.WriteLine("Under 40");