def sum_two(x, y):
if x != y :
x=input("Enter the first number")
y=input("Enter the second number")
sum = (x+y)
print('The sum is: + sum')
else:
sum = (sum)*3
print(‘The sum is: + sum’)
print(‘This statement is always executed’)
return sum
(How do I correct this code)