Select all the test cases which correspond to an edge case f…

Select all the test cases which correspond to an edge case for the following program. [Negative points for wrong guesses] a = round(float(input(‘Enter an integer value for variable a: ‘)))b = round(float(input(‘Enter an integer value for variable b: ‘)))c = a+bif (a + b = 10: print(‘Sum is’, c)else: print(‘Sum is between 10 and 15’)