본문 바로가기
알고리즘 & 자료구조/백준

백준 10998

by 신재권 2021. 6. 28.
import java.util.Scanner;


public class Main10998 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int A =sc.nextInt();
		int B = sc.nextInt();
		System.out.println(A*B);
	}

}

'알고리즘 & 자료구조 > 백준' 카테고리의 다른 글

백준 14681  (0) 2021.06.28
백준 1330  (0) 2021.06.28
백준 10950  (0) 2021.06.28
백준 10869  (0) 2021.06.28
백준 10430  (0) 2021.06.28