Q. program to write the addition of two number using python programming
The given number is num1=10 & num2=20.
Ans:
num1=10 #first given number
num2=20 #second given number
num3=num1+num2
print("The addition of two number is=",num3)
output:
The addition of two number is=30
The given number is num1=10 & num2=20.
Ans:
num1=10 #first given number
num2=20 #second given number
num3=num1+num2
print("The addition of two number is=",num3)
output:
The addition of two number is=30
0 comments:
Post a Comment