Python Program to add two numbers
Program:
num1 = int (input(" Please Enter the First Number: ")) num2 = int (input(" Please Enter the second number: ")) sum = num1+num2 print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Output:
Please Enter the First Number: 3 Please Enter the second number: 5 The sum of 3 and 5 is 8
Python Program to add three numbers
Program:
a = int (input(" Please Enter the First Number: ")) b = int (input(" Please Enter the second number: "))
c = int (input(" Please Enter the third number: ")) sum = a+b+c print('The sum of three numbers is ",sum)
Output:
Please Enter the First Number: 3 Please Enter the second number: 5
Please Enter the third number: 2 The sum of three numbers is 10
Python Program to add Two and Three numbers Video by Rajesh Sir
Comments