51. 請問下面程式的輸出為何?```c#include int f(int x) { return x > 0 ? x + f(x-1) : 1; }int main(){printf("%d", f(10));return 0;}```(A)10 (B)55 (C)56 (D)78