function Sum_Solution(n)
{
    // write code here
    return (1+n)*n / 2;
}
module.exports = {
    Sum_Solution : Sum_Solution
};