Matthew sells tickets for a school lottery at 3$/each. He wants to know how much profits he will make according to the number of tickets sold knowing that he starts with 2$.
Answer:
. TRANSITIVE OR INTRANSITIVE VERB
If you accept something that you have been offered, you say yes to it or agree to take it.
किसी बात को स्वीकार करना/स्वीकार करना
I accepted his offer of employment. All those invited to the conference have accepted.
accept a gift/donation/
Answer:
Yes
Explanation:
becuase she saves the same amount money every month
it's linear
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