import java.util.Scanner;
public class primeNumber {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int i = 2;
if (x % 2 == 0 || x % 3 == 0 || x % 5 == 0 || x % 11 == 0) {
System.out.println(x + "æ¯åæ°.");
} else {
System.out.println(x + "æ¯ç´ æ°.");
}
}
}
温馨提示:答案为网友推荐,仅供参考