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); } } 백준 풀떄 이거 복사 붙어 넣기하자!!