Answer:
getting a motorcycle and getting a tattoo
Answer:
a = int(input("Enter first number: "))
b = int(input("Enter second number: "))
c = int(input("Enter third number: "))
a,b = a+b,b+c
print(a,b,c)
Explanation:
Assignments like this are easy in python, in the sense that no helper variables are needed!
Abstraction comes from two latin words; abs which means away and trahere which mean to draw. From the meaning itself, it is to draw away something from specific objects, individuals, group, etc. In the computer world, a programmer hides all relevant data pertaining to the relevance of a data. It is done to increase efficiency and and reduce complexity.