https://programmers.co.kr/learn/courses/30/lessons/12912
class Solution {
public long solution(int a, int b) {
long answer = 0;
if(a==b) return a;
int max = Math.max(a,b);
int min = Math.min(a,b);
for(int i=min;i<=max;i++){
answer += i;
}
return answer;
}
}
a와 b의 대소 관계가 정해져있지 않기 때문에 대소 관계를 판별하고 사이 합을 구해줘야 한다.