본문 바로가기

Algorithm/Baekjoon

[백준_JAVA] 27323 직사각형

import java.util.Scanner;

public class Main {

	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);
			
	}
}

'Algorithm > Baekjoon' 카테고리의 다른 글