/******************************************************************************

                            Online Java Compiler.
                Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.

*******************************************************************************/
import java.util.*;
public class Vaja13{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.print("Vnesi stevilo: ");
		int a = sc.nextInt();
		if (a % 5 == 0 && a % 6 != 0) {
		    System.out.println("Število je deljivo s 5 in ni deljivo s šest.");
		}
		else {
		    System.out.println("Število je deljivo z 6 in ni z 5. ali pa nič od tega.");
		}
	}
}