public:
    int Sum_Solution(int n) {
        if(n==1) return 1;//递归
          return Sum_Solution(n-1)+n;
    }
};