import java.util.*; public class Metode16{ static boolean jePrastevilo(int a){ int st = 0; for (int i = a-1; i>1; i--){ if (a % i == 0){ return false; } } return true; } static void izpisPrastevil (int a, int b){ for (int i = Math.min(a,b) + 1 ; i < Math.max(a, b); i++){ if (jePrastevilo(i)) System.out.print(", "+i); } } static int stPrastevil(int tab[]){ int st = 0; for (int i = 0; i