12. Write a program to read three numbers in three variables and swap first two variables with the sums of first and second, second and third numbers respectively. / sa 11 ip chapter 3, sa 12 cs chapter 6, Uncategorized / By PythonCSIP CS IP # Code a, b, c = map(int, input('Enter three numbers : ').split()) a, b = a+b, b+c print(a, b, c)