How do I concatenate two integer numbers (for example: 10 and 20) in Python to get a returned value of 1020?
Cast both to a string, concatenate the strings and then cast the result back to an integer:
z = int(str(x) + str(y))