Write an if-else statement for the following: If num_difference is equal to -16, execute total_difference = -25. Else, execute total_difference = num_difference. 1 num_difference = int(input()) # Program will be tested with values: -14, -15, -16, -17. 2 3 4 print(total_difference) 5

Q&A Education