Estimated reading time: 1 minute
f = lambda x, y : x + y
print(f(1,2))
# 3