Style

Adding two Number

 Practice Question #1


#Adding two Number

Num_1 = int(input("Write Your first number \n"))
Num_2 = int(input("Write your second number \n"))

print("The addition of both th number is :- \n" +
       str(Num_1) + " + " + str(Num_2) + " = "
      + str(Num_1 + Num_2))

Output

Write Your first number 
34
Write your second number 
56
The addition of both th number is :- 
34 + 56 = 90

Comments

Script