The answer for Lambda functions is

addition = lambda a,b : a + b
print('This code performs additional operation')
val1 = int(input('Enter the first number to add..'))
val2 = int(input('Enter the second number to add..'))
print('The addition of %s and %s is %s'%(val1,val2,addition(val1,val2)))