program to obtain three numbers and print their sum.

#to input 3 numbers and print their sum.
Num1=int(input("enter number1;"))
Num2=int(input("enter number2;"))
Num3=int(input("enter number3;"))
Sum= Num1+Num2+Num3
Print("Three numbers are:",num1,num2,num3)
Print("sum is :",sum)

Comments

Popular posts from this blog

program that reads two numbers and an arithmetic operator and displays the computed result.

program to find the multiples of a number ( the divisor) out of given five numbers.