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.

# Code
a, b, c = map(int, input('Enter three numbers : ').split())
a, b = a+b, b+c
print(a, b, c)