Posts

Showing posts with the label add-two-numbers

Write a program in python to initialize two integer numbers and print the sum.

Image
2) Write a program in python to initialize two integer numbers and print the sum. a=10 b=20 c=a+b print(c)         output :    Add-two-numbers-program