import math
n = 4
k = 2
Permutations = math.factorial(n) / math.factorial(n-k) # Determine permutations
print(Permutations)
n = 52
k = 2
Permutations = math.factorial(n) / math.factorial(n - k) # Determine Permutations
Combinations = Permutations / math.factorial(k) # Determine Combinations
print(Combinations)