using System;
public class Program
{
public static void Main()
int n = int.Parse(Console.ReadLine());
Console.WriteLine(n % 5 == 0 && n != 0 ? "is divisible by 5" : "Not divisible by 5");
}