This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inflation macrophilia mlp overweight ssbbw vore overweightobese pregnancyfetish hyperpregnancy stuffingfetish macrophiliafetish stuffedbellyfetish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private boolean isPrime(int number){ | |
for (int i = 2; i <= Math.sqrt(number); i++) { | |
if (number%i==0) { | |
return false; | |
} | |
} | |
return true; | |
} | |
private int getPrimeNumber(int number) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [] | |
numMales =5 | |
numFemales =3 | |
K=2 | |
b = 0 | |
c = [] | |
for i in range(numMales+numFemales): | |
a.append("M") | |
for i in range(numFemales): | |
c.append(((K*i))%(numMales+numFemales-i)) |