Search

두 수의 곱

태그
코딩테스트 입문
class Solution { public int solution(int num1, int num2) { return num1 * num2; } }
Java
복사