Answer:
Of course its not your love for the athlete! The problem might be that you think you are nice but could be doing something wrong. try talking to someone that isnt nice back and ask what do you not like about me or something like that.
Explanation:
Networking is the answer.
Answer:
but why................m..
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