I agree because when u have confidence , ur more strong
Answer:
Prevent its currency from losing value too quickly.
Explanation:
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
The sum of n odd numbers n², where n is a natural number and represents the number of terms.
<h3>What is a natural number?</h3>
The numbers that we use when we are counting or ordering, which occurs commonly and obviously in nature.
Here, given all the odd numbers from 1,3,5,7..........999.
The sum of n odd numbers, n².
999² = 998001
Thus, the sum of all the odd numbers from 1 to 999 is 998001.
Learn more about natural number here,
brainly.com/question/17429689
#SPJ1