#include int main(){ int a,b,c; printf("Unesite brojeve a, b i c: "); scanf("%d %d %d", &a, &b, &c); printf("Vrednost pod a) je %d\n", a!=b && b!=c && c!=a); printf("Vrednost pod b) je %d\n", a%2==0 && b%2==0 && c%2==0); printf("Vrednost pod c) je %d\n", a<=100 && b<=100 && c<=100 && a>0 && b>0 && c>0); return 0; }