The code that read two numbers from user input, then, print the sum of those numbers are as follows:
x = int(input("write a number: "))
y = int(input("write another number: "))
print(x + y)
learn more on python code here: https://brainly.com/question/15183327?referrer=searchResults