[Java] 프로그래머스 – 몫

class Solution {
    public int solution(int num1, int num2) {
        return num1 / num2;
    }
}