Как остановить функцию от возврата

def test():
  a = 4
  b = 5
  c = 10

  result = a + b + c
  print("Result is", result)

test()
Mr. Glitch