PROGRAMMING:Please n!
1! = one
2! = 1*2
3! = 1*2*3
n! = 1*2*3*4.....*n
###Input format:
The input data first contains an integer T, which represents the number of test cases, and then t groups of test data. Each group of test data includes a positive integer n (n < 12)
###Output format:
Factorial of output integer n
###Input example:
Here is a set of inputs. For example:
```in
three
one
two
three
```
###Output example:
The corresponding output is given here. For example:
```out
one
two
six
```
answer:If there is no answer, please comment
2! = 1*2
3! = 1*2*3
n! = 1*2*3*4.....*n
###Input format:
The input data first contains an integer T, which represents the number of test cases, and then t groups of test data. Each group of test data includes a positive integer n (n < 12)
###Output format:
Factorial of output integer n
###Input example:
Here is a set of inputs. For example:
```in
three
one
two
three
```
###Output example:
The corresponding output is given here. For example:
```out
one
two
six
```
answer:If there is no answer, please comment