const N = 7;
// The sum of the first N even numbers is N * (N + 1)
let sum_even = N * (N + 1);
console.log(`The sum of the first ${N} even numbers is: ${sum_even}`);
// 2 + 4 + 6 + 8 + 10 12 + 14 = 56
/*
run:
The sum of the first 7 even numbers is: 56
*/