48. 以下 Python 程式碼的輸出為何? def add(a, b=10): return a + b result = add(5) print(result)(A) 5(B) 10(C) 15(D) Error