The paper clip.
Hope this helped.
Can i have brainliest?
Answer: A; X coefficient
Explanation: Hope I helped out !
-Carrie
Ps. it would mean a lot if you marked brainliest
I dont know how to do that
largest = int(input("Enter a number: "))
print("Largest: {}".format(largest))
i = 0
while i < 5:
num = int(input("Enter a number: "))
if num > largest:
largest = num
print("Largest: {}".format(largest))
i += 1
I hope this helps!