Please can someone it well for me, i can't understand it very well
# PROBLEM - ADD ROUND """ Write two functions. The first should round an integer up to the next multiple of 10 if the rightmost digit is 5 or greater, else round it down to the previous multiple of 10. The second function should return the sum of the rounded values of two integers. Sample Output: _____________________________________ Input: Output: | _____________________________________| add_round(7, 4) | 10 | add_round(7, 8) | 20 | add_round(14, 16) | 30 | add_round(15, 15) | 40 | ___________________|_________________| """ def add_round(a, b): return round(a) + round(b) def round(num): return num - (num % 10) + 10 if num % 10 >= 5 else num - (num % 10) print(add_round(14, 16))