class Solution {
public:
int Sum_Solution(int n) {
return int(pow(n,2)+n)>>1;
}
};
//没有get到出题的点是什么,反正没有用到乘除法和控制语句。