using System;
public class Program
{
public static void Main()
Console.WriteLine("Adjon meg egy egész számot!");
int e=Convert.ToInt32(Console.ReadLine());
if(e%6==0){Console.WriteLine("osztható");}
else{Console.WriteLine("nem osztható");}
}