const summation = (n) => (n * (n + 1)) / 2;
let sum = (...para) => para.reduce((d,b) => d + b);
const summation = n => n * (n + 1) / 2;