In [ ]:
a = 1
b = 1

In [ ]:
def sum(x, y):
    return x+y

In [ ]:
print(sum(a, b))