lakayla35 lakayla35 10-12-2020 Computers and Technology contestada Consider the following code: start = int(input("Enter the starting number: ")) stop = int(input("Enter the ending number: ")) X = -10 sum = 0 for i in range (start, stop, x): sum = sum + i print(sum) What is output if the user enters 78 then 45?