You are not recognized as the original poster of this topic.
def add_strategies (x, y):
z = X + Y
return z // Send contents of 'z' back to calling code
a = int (input("Enter a strategy: "))
b = int (input("And another: "))
c = add_strategies (a, b) // Store number sent back into this 'c' variable
print ("Strategy is:", c)