Posts

Showing posts with the label add-two-number-program

write a program to input two numbers and their sum.(run time input)

Image
3)  write a program to input two numbers and their sum. a=int(input("enter the first number : ")) b=int(input("enter the second number : ")) c=a+b; print(c) output : Add-two-numbers-program-in-python