#include #include int main() { int A, B; printf("Podaj A: "); scanf("%i", &A); printf("Podaj B: "); scanf("%i", &B); if (A>2 && B<=3) printf("Warunki A>2 oraz B<=3 sa spelnione"); else printf("Przynajmniej jedez z warunkow A>2 lub B<=3 nie jest spelniony"); }