두 정수 사이의 합
·
코딩테스트/프로그래머스 Lv1
class Solution { public long solution(int a, int b) { long answer = 0; if(b >= a){ for(int i = a; i b){ for(int i = b; i