21. Write a program in python to input three numbers and swap
them as this : 2nd number gets the value of 1st + 2nd
number, 3rd number gets the value of 2nd +3rd
number
Answers
Answered by
0
निभाई थी और यह एक ऐसा ही कुछ लोग ऐसे हैं कि इस साल चीन में is the best way for you can
Answered by
2
Answer:
no1 = float(input("Enter First Number:"))
no2 = float(input("Enter Second Number:"))
no3 = float(input("Enter Third Number:"))
no3 = no2 + no3
no2 = no1 + no2
print("This is your first answer:" + no2)
print("This is your Second answer:" + no3)
Similar questions