Exercises: where are the errors?

def xyz(p1, 'hello'):
    print(p1)
x1 = int(input())
x2 = int(input())
res = add(x1, x2)
print("The sum is: ", res)

def add(a, b):
  c = a + b
  return c
def fun(x):
  print(x, end=' ')
  fun(x-1)

fun(10)