print("This is going to be python function..") num1 = 10 num2 = 5 def addition(): add = num1 + num2 print(f"addition value is: {add}") def subtraction(): sub = num1 - num2 print(f"subtraction of two number is: {sub}") addition() subtraction()