#include using namespace std; int nwd(int w, int t) { if (w%t==0){ return t; } else nwd(t,w%t); } int nww(int w, int t) { return (w*t)/nwd(w,t); } int main() { int q; int e; cout<<"Podaj liczbe a: "; cin>>q; cout<<"Podaj liczbe b: "; cin>>e; while(e==0) { if(q==0) { cout<<"Liczba b nie mo¿e byæ rowna 0"<