Write a Python program to create a lambda function that adds 25 to a given number passed in as an argument. x=lambda x:x+25 print(x(10))