I have a point (0,0), and I want to increase the x coordinate of that point by a value that a user will specify.
def change_coordinates():
origin = (0,0)
x = input("By how much do you want to increase the x value?")
# here I need a code that would change origin from (0,0) to (0+x,0)