#include /* deklaracija funkcije */ int prost(int n); int main(){ int x, rez; scanf("%d", &x); rez = prost(x); if(rez) printf("Broj je prost\n"); else printf("Broj nije prost\n"); return 0; } /* definicija funkcije */ int prost(int n){ int i, brdel=0; for(i=2; i