Lifelong learning can enhance our understanding of the world around us, provide us with more and better opportunities and improve our quality of life.
Explanation:
12: life line for commoners
13.started riot, especially
14.unfaur taxation, voting issues, unequal lang, estates gets all the votes, 1st and 2nd estates more votes than 3rd estates.
15. most of the population who were the 3rd estates (97%) treated people poorly with high taxes and decided to revolt
The code that read two numbers from user input, then, print the sum of those numbers are as follows:
x = int(input("write a number: "))
y = int(input("write another number: "))
print(x + y)
<h3 /><h3>Code explanation</h3>
- The first line of code ask the user for a number input. The integer input is stored in a variable x.
- The second line of code ask the user for another number input . The integer input is stored in a variable y.
- Finally, we print the sum of the user's input.
learn more on python code here: brainly.com/question/15183327?referrer=searchResults