Write a program that randomly generates a lottery between O and 99 prompts the user to enter a number in the same range, and determines whether the user wins according to the following rule:
tip: To be able to test the exercise, make use of the following two function calls to generate numbers between 0 and 99:
random.seed(1) # to make the random generator deterministicvariable = random.randint(0, 99) # random generator that generates a number between 0 and 99Below is an example execution of the assignment. The text in red represents user input and is logically not printed by your program.
Enter your lottery pick (two digits): 11 The lottery number is 11 Exact match: you win 10.000 € 23 The lottery number is 32 Match all digits: you win 3.000 € 38 The lottery number is 32 Match one digit: you win 1.000 € 78 The lottery number is 36 Sorry, no match