Level
프로그래머스 Lv1
Recruitment
function solution3(a, b) {
  return a > b ? ((a + b) * (a - b + 1)) / 2 : ((a + b) * (b - a + 1)) / 2;
}
// 가우스 덧셈 활용