import java.awt.*;
import javax.swing.*;
import com.otherwise.jurtle.*;

public class IsItEvenOrOdd extends Turtle
{


    public void runTurtle()
    {
        Console.print( "Type an integer number > " );
        int input = Console.readInt();
        
        if ( input % 2 == 0 )
            Console.println( input + " is even." );
        else
            Console.println( input + " is odd." );
    }


}
