#include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { int a=1 ,b=100,c=101; printf("Podaj liczbe a oraz b \n"); scanf("%d",&a); while(a>b) { printf("A jest wieksze od 100 \n Dodaje a do 100 \n"); c=a+b; printf("%d",c); break; } while(b>a) { printf("A jest mniejsze od 100 \n Odejmuje od 100 \n"); c=b-a; printf("%d",c); break; } while(b=a) { printf("Liczby sa rowne"); break; } return 0; }