Q21Single correct4 Marks16 Oct 2022
If `n` is a positive integer, what is the output of the following code? Assume that natural numbers start from , that is, is not a natural number.
```
a = n
for i in range(1, n):
a = a + i
b = a
for j in range(1, a):
b = b * j
print(b)
```