import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a, b;
		a = sc.nextInt();
		b = sc.nextInt();
		System.out.println(a * b);
	}
}

백준 풀떄 이거 복사 붙어 넣기하자!!

'개발 공부 > 백준' 카테고리의 다른 글

자바 자동 임포트  (0) 2024.03.05