using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
namespace LearnDotnet
{
internal class Program
{
static void Main(string[] args)
{
for(int i = 0; i < 6; i++)
{
if(i == 0)
{
}
else
{
if(i%2 == 1)
{
Console.WriteLine("{0} : 홀", i);
}
else
{
Console.WriteLine("{0} : 짝", i);
}
}
}
}
}
}