package pr2.exceptions.fakultaet;
public class Fakultaet {
public int fact(int n) {
return factIntern(n);
}
private int factIntern(int n) {
return 0;