diff --git a/addition using function b/addition using function new file mode 100644 index 0000000..16a0e2d --- /dev/null +++ b/addition using function @@ -0,0 +1,9 @@ +#Python program to add two numbers using function + +def add_num(a,b):#function for addition + sum=a+b; + return sum; #return value + +num1=25 #variable declaration +num2=55 +print("The sum is",add_num(num1,num2))#call the function