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

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



Comments

Popular posts from this blog