int pot (int n, int m){ if (m==1) { return n; } else{ return mul(n, pot(n,m-1)); } } // siehe Produkt und Summe