write a program to input two numbers and their sum.(run time input)
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)
This is a python programming blog that covers the complete syllabus of CBSE XI-XII and OLEVEL. it helps you to solve your python programming related doubts and queries.number programs, series programs, pattern programs, array programs, string programs, function programs, list programs, set programs, tuple programs, dictionary programs, oop's related programs exceptional handling programs and all python programs.
a=int(input("enter the first number : "))b=int(input("enter the second number : "))c=a+b;print(c)
Comments
Post a Comment