using System;
public class Program
{
public static void Main()
int word_length;
string word;
do{
Console.WriteLine(" write a word");
word = Console.ReadLine();
word_length = word.Length;
if(word_length %2 == 0)
Console.WriteLine(" the word even");
}
else if(word_length %2 != 0){
Console.WriteLine(" the word odd");
while( word != "quit");