I have made this code below :
a = list(input("Enter some numbers"))
b = list(input("Enter some numbers"))
c = a + b
def PuzzleKey():
"""
the variable c sums a and b, and if their sum is equal to 2O20, we multiply them
"""
if c == 2020:
return a * b
print(PuzzleKey())
Instead of lines 1-2, I need to generate random values instead of creating ones myself, how can I do that?