function solution(num1, num2) { var answer = 0; return parseInt((num1 / num2) * 1000); }
parseInt를 사용하여 정수변환 하였다.