Addition and Subtraction in Python || #1 PYTHON || Shivam Bhagat ( Mr. Shivam )

 

PYTHON
#1



First of all , we have to input two Numbers from user.

a=int(input("Enter First Number : "))

b=int(input("Enter Second Number : "))




Then , using any variable get your Operations Done ( + , - )

sum=a+b
diff=a-b




And , at the Last , Get the Outuput of these operations using print Keyword. 😊

print("sum of",a,"and",b,"is : ",sum)
print("difference of",a,"and",b,"is : ",diff)




To Download PDF File of this Post, Click Below 👇





If you Have any Query...  You can Contact me through :


Instagram DM - Click Here 

Youtube Channel - Click Here 

Email - Click Here

Popular posts from this blog

What is PYTHON ?