PROGRAMMING:Random addition problem in primary school
Use randint() function of random library to randomly generate N addition problems (two addends are required to be positive integers less than 10), and the positive integer n is input by the user( Note: first, use the seed (a) function of random library to initialize the seed of random number. The seed parameter is a positive integer, which is entered by the user.)
###Input format:
Enter the initialization random number seed parameter a (positive integer) and the number of questions n (positive integer less than 10) in one line.
###Output format:
Output n addition questions in the form of X + y =, one for each line.
###Input example:
Here is a set of inputs. For example:
```in
2 5
```
###Output example:
The corresponding output is given here. For example:
```out
1+2=
2+6=
3+5=
5+4=
1+3=
```
###Input example:
Here is a set of inputs. For example:
```in
333 3
```
###Output example:
The corresponding output is given here. For example:
```out
9+6=
6+4=
7+2=
```
answer:If there is no answer, please comment
###Input format:
Enter the initialization random number seed parameter a (positive integer) and the number of questions n (positive integer less than 10) in one line.
###Output format:
Output n addition questions in the form of X + y =, one for each line.
###Input example:
Here is a set of inputs. For example:
```in
2 5
```
###Output example:
The corresponding output is given here. For example:
```out
1+2=
2+6=
3+5=
5+4=
1+3=
```
###Input example:
Here is a set of inputs. For example:
```in
333 3
```
###Output example:
The corresponding output is given here. For example:
```out
9+6=
6+4=
7+2=
```
answer:If there is no answer, please comment