using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int n = 13;
if (Odd(n))
Console.WriteLine("odd");
else
Console.WriteLine("even");
}
public static bool Odd(int n)
{
return n % 2 == 1;
}
}
}
/*
run:
odd
*/